Skip to content

Git Tagging

Kenneth Kasajian edited this page Jul 8, 2014 · 1 revision
Will tag the current files with <tag_name>:
git tag -a <tag_name>
Show current tags:
git tag -l
Show changes associated with a tag:
git show <tag_name>

Push tags to origin repository:

git push --tags

or if you are looking to push a single tag:

git push origin <tag_name>

References