Top "Git-tag" questions

git-tag is the Git command used to create, list, delete or verify a tag object signed with GPG.

How do I tag my git repository using the GitHub Mac application?

I pretty new to GitHub and personally did not have time to learn too much command line. I prefer using …

git-tag github-for-mac
How to "rebase tags" in git?

Suppose I have the following simple git repository: a single branch, some commits one after another, a couple of them …

git rebase git-rebase git-tag
Cloning a repo without tags?

I want to create bare git project without tags using clone.But through Google came to know that there is …

git git-clone git-tag
Can git submodule update be made to fetch tags in submodules?

I have a git repository which uses a submodule which I'd like to point at an annotated tag, but when …

git git-submodules git-tag
GitHub: A tag but not a release

I want to tag a certain commit. When I push the tag, GitHub assumes it's a release, I don't want …

git github git-tag
How to version or tag incrementally in Gitlab CI/CD when merging from Production to Master branch

I’m working on a project and I wanted to tag or give a version number. I wanted gitlab to …

git gitlab versioning git-tag gitversion
Is it possible to mark a git commit as work-in-progress?

I'm aware that there are various opinions and philosophies about whether or not all commits on the master branch should …

git version-control git-tag git-bisect
Do git tags apply to all branches?

I'm getting my feet wet with git tagging, but my previous background is in Subversion, where "tags" were really just …

git branch git-branch git-tag
Can a lightweight tag be converted to an annotated tag?

I've tagged a commit with a lightweight tag, and pushed that tag to a remote repo, shared with other developers. …

git tags git-tag
Seeing what revision goes with a tag in Git

Beginner Git question: In the Mercurial world, hg tags gives me a list of tags and the corresponding revisions, whereas …

git version-control dvcs git-tag