git:tag - evanmoran/quick GitHub Wiki
Show all tags
git tag
Tag a specific <commit_id> locally
git tag -a <tag_name> -m <tag_description> <commit_id>
Remove a tag locally
git tag --delete <tagname>
Push all tags to remote
git push --tags
Delete tag from remote
git push --delete origin <tagname>
Fetch all remote tags
git fetch --tags
Sync to a tag
git checkout <tag_name>