Skip to content

Making and using tags

marcelvanthoff edited this page May 2, 2012 · 5 revisions

How to make tags

List all tags

git tag

How to create a tag in Git

git tag -a v3.3.4 -m 'HelioScan version 3.3.4'

Check your tag

git show v3.3.4

Publish the tag

git push --tags

Update to tag

git pull origin master

git checkout v3.3.4

Delete a tag

git tag -d v3.3.4

git push --tags

Clone this wiki locally