TOOL ยป GIT
Tag
shell
## Create tag
git tag tagname
## See all tags
git tag
## Delete tag
git tag -d tagname
## Push tags to remote
git push <remote> --tags
## Delete tags in remote
git push origin :refs/tags/tagname