1. 添加标签
使用git tag
加上-a参数来创建一个带备注的tag,备注信息由-m指定。如果你不传入-m,那么在创建过程中系统会自动打开编辑器让你填写备注信息。
git tag -a name -m "xxxxxxx"
2. 列出已经存在的tag
git tag
3.给某个指定的commit添加tag,-m 后跟备注信息
git tag -a v1.0.0 11111111 -m "xxxxxxxx"
4.将tag同步到远程服务器
git push origin v1.0.0
5.推送所有:
git push origin --tags
6.删除本地指定的tag
git tag -d v1.0.0
7.删除远程tag
git push origin --delete v1.0.0
评论区