1.查看本地tag
git tag
2. 查看远端tag
git ls-remote --tags origin
4. 新建tag
git tag -a newTag -m “xxx这里是该tag的内容”
3.将本地tag推送到远端tag
git push origin yourTagName //yourTagName这里指你要推送到远端的tag名字
git push origin --tags // 推送所有本地tag到远端tag
4.基于远端Tag新建分支
git branch newBranchName originTagName
// git branch sys_471_20210821 release-1.0
git checkout newBranchName
5. 删除本地Tag
git tag -d tag-name
6. 删除远端Tag
git push origin :/refs/tags/tag-name
7.批量删除本地Tag/远端Tag
1、git tag -d $(git tag -l) //删除本地tag
2、git fetch //拉取远程tag
3、git push origin --delete $(git tag -l) //删除远程tag
4、git tag -d $(git tag -l) //删除本地tag