Difference between revisions of "Git tag"
Jump to navigation
Jump to search
| Line 8: | Line 8: | ||
``` | ``` | ||
git tag -d v0.1.0 | git tag -d v0.1.0 | ||
| + | ``` | ||
| + | |||
| + | ## list | ||
| + | ``` | ||
| + | git tag -l | ||
``` | ``` | ||
Revision as of 16:36, 7 June 2023
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>