发版打定版标签
1、 添加标签
git tag -a version -m "note"
//git tag 是打标签的命令,-a 是添加标签,其后要跟新标签号,-m 及后面的字符串是对该标签的注释
2、提交标签到远程仓库
git push origin -tags
// -tags可以把本地的标签全部提交到git仓库
3、删除标签
git tag -d version
//-d 表示删除,后面跟要删除的tag名字
4、删除远程标签
git push origin :refs/tags/version
// 冒号后为 refs/tags/+需要删除的tag 表示删除远程仓库的 tag
5、查看标签
git tag
git tag -l