查看当前仓库的所有标签: git tag
创建标签: git tag <tagname>
查看标签对应的版本信息: git show <tagname>
删除一个标签: git tag -d <tagname>
历史上某次commit打开一个标签: git tag <tagname> <commitversion>
标签上注释: git tag -a <tagname> -m <msg>
某个标签推送远程仓库: git push <仓库名> <tagname>
所有标签推送远程仓库: git push <仓库名> --tags
原文:https://www.cnblogs.com/tree624/p/13806146.html