Git tag

From UVOO Tech Wiki
Revision as of 16:36, 7 June 2023 by Busk (talk | contribs)
Jump to navigation Jump to search

Tag

git tag -a v6.0.3 -m "Agent2 v6.0.3"
git push origin v6.0.3

Delete

git tag -d v0.1.0

list

git tag -l

Checkout tag

git checkout tags/<tag> -b <branch>