Top "Git-tag" questions

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

In git, how do I sync my tags against a remote server?

Is there a way to keep my local git tags in lockstep with a remote's tags? That is -- not …

git git-tag
Add new commit to the existing Git tag

I have created a Git tag as v1.1 using git tag -a v1.1 -m 'my version 1.1' and I pushed …

git github git-branch git-svn git-tag
Get last git tag from a remote repo without cloning

How to get last tag from a (non checked-out) remote repo? On my local copy I use describe git describe …

git git-tag git-describe
"git describe" ignores a tag

In the following lines: $ git tag -n1 v1.8 Tagged the day before yesterday v1.9 Tagged yesterday v2.0 Tagged today $ git …

git git-tag git-describe
List git tag names, dates and messages

How do I list the tag name, tag date and tag message for all tags? It seems that git's separation …

git git-log git-tag
Git tag before or after merge?

I have a simple question about tagging different versions of my project with git. If I just completed my 1.1 branch …

git git-tag
How do I read tagger information from a git tag?

So far I have: git rev-parse <tagname> | xargs git cat-file -p but this isn't the easiest thing to …

git git-tag
Fetch a single tag from remote repository

This command fetches all tags: git fetch origin --tags This command fetches a specific tag: git fetch origin refs/tags/1.0.0 …

git git-checkout git-tag git-fetch
"git push" and "git push --tags" in the same command?

I usually run: git push git tag v4.7 git push --tags Both the first and third operations connect to the …

git git-push git-tag
How to tag a git repo in a bamboo build

I'm trying to tag the git repo of a ruby gem in a Bamboo build. I thought doing something like …

bamboo git-tag