Git tag 操作

来源:互联网 发布:失败 无助 知乎 编辑:程序博客网 时间:2024/05/24 07:16

事实上Git 的推送和删除远程标签命令是相同的,删除操作实际上就是推送空的源标签refs:
git push origin 标签名
相当于
git push origin refs/tags/源标签名:refs/tags/目的标签名


git push 文档中有解释:

tag <<tag>> means the same as refs/tags/<tag>:refs/tags/<tag>.
Pushing an empty <src> allows you to delete the <dst> ref from the remote repository.

推送标签:

[plain] view plaincopy
  1. git push origin 标签名  

删除本地标签:

[plain] view plaincopy
  1. git tag -d 标签名  

删除远程标签:

[plain] view plaincopy
  1. git push origin :refs/tags/标签名  
  2.   
  3. git push origin :refs/tags/protobuf-2.5.0rc1  

其他本地操作:

[plain] view plaincopy
  1. #打标签  
  2. git tag -a v1.1.4 -m "tagging version 1.1.4"  
  3.   
  4. #删除本地仓库标签  
  5. git tag -d v1.1.4  
  6.   
  7. #列出标签  
  8. git tag   

参考文档:
http://nathanhoad.net/how-to-delete-a-remote-git-tag
http://linux.die.net/man/1/git-push


转自:
http://ihacklog.com/post/how-to-push-and-delete-a-remote-git-tag.html

0 0
原创粉丝点击