Top "Git-tag" questions

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

How to list all tags along with the full message in git?

I want git to list all tags along with the full annotation or commit message. Something like this is close: …

git tags git-tag
How do you push a Git tag to a branch using a refspec?

I want to force push, for example, my tag 1.0.0 to my remote master branch. I'm now doing the following: git …

git git-push git-tag
“tag already exists in the remote" error after recreating the git tag

I get the following error after I run the steps below: To [email protected]:username/repo-name.git ! [rejected] dev …

git repository git-tag
Checking out Git tag leads to "detached HEAD state"

I'm developing a deployment script for my git project and I just started using tags. I've added a new tag …

git deployment git-tag
What is the difference between an annotated and unannotated tag?

If I want to tag the current commit. I know both of the following command lines work: git tag <…

git tags git-tag
Do Git tags only apply to the current branch?

I'm currently working with a repository that has multiple branches. When I create a tag, does that tag refer to …

git git-tag
Git - Checkout a remote tag when two remotes have the same tag name

I had hoped this would work: git checkout remote/tag_name but it doesn't. This does: git checkout tags/tag_…

git git-remote git-tag
Is there a standard naming convention for git tags?

I've seen a lot of projects using v1.2.3 as the naming convention for tags in git. I've also seen some …

git git-tag
How do I edit an existing tag message in git?

We have several annotated tags in our git repository. The older tags have bogus messages that we would like to …

git git-tag
Do git tags get pushed as well?

Since I created my repository it appears that the tags I have been creating are not pushed to the repository. …

git git-tag