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 
相關文章
相關標籤/搜索