git 查看tag,打tag,删除tag详解程序员

查看本地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

(0)
上一篇 2021年7月15日
下一篇 2021年7月15日

相关推荐

发表回复

登录后才能评论