Git 推送和删除远程标签

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

git push 文档中有解释:.net

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.blog

推送标签:rem

[plain] view plain copy文档

  1. git push origin 标签名 

删除本地标签:get

[plain] view plain copyit

  1. git tag -d 标签名 

删除远程标签:io

[plain] view plain copy推送

  1. git push origin :refs/tags/标签名 
  2. git push origin :refs/tags/protobuf-2.5.0rc1 

其余本地操做:view

[plain] view plain copy

  1. #打标签 
  2. git tag -a v1.1.4 -m "tagging version 1.1.4" 
  3. #删除本地仓库标签 
  4. git tag -d v1.1.4 
  5. #列出标签 
  6. git tag 
相关文章
相关标签/搜索