git-tag is the Git command used to create, list, delete or verify a tag object signed with GPG.
Is there a way to keep my local git tags in lockstep with a remote's tags? That is -- not …
git git-tagI 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-tagHow to get last tag from a (non checked-out) remote repo? On my local copy I use describe git describe …
git git-tag git-describeIn 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-describeHow do I list the tag name, tag date and tag message for all tags? It seems that git's separation …
git git-log git-tagI have a simple question about tagging different versions of my project with git. If I just completed my 1.1 branch …
git git-tagSo far I have: git rev-parse <tagname> | xargs git cat-file -p but this isn't the easiest thing to …
git git-tagThis 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-fetchI usually run: git push git tag v4.7 git push --tags Both the first and third operations connect to the …
git git-push git-tagI'm trying to tag the git repo of a ruby gem in a Bamboo build. I thought doing something like …
bamboo git-tag