查看本地tag
git tag
在某个commit上打tag
git tag tagName bc194b501e6cce03bb249c7888c3c7b57p20e23
将本地某个tag推送到远程
git push origin tagName
删除本地tag
git tag -d tagName
删除本地tag后,执行如下语句删除远程tag
git push origin :refs/tags/tagName
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/1402.html