Git Tag 操作
添加
git tag v4.8.0
git push origin v4.8.0
删除
先本地
git tag -d v4.8.0
再远程(三种方式)
git push -d origin v4.8.0
git push origin -d v4.8.0
git push origin :refs/tags/v4.8.0
git tag v4.8.0
git push origin v4.8.0
先本地
git tag -d v4.8.0
再远程(三种方式)
git push -d origin v4.8.0
git push origin -d v4.8.0
git push origin :refs/tags/v4.8.0