git 删除远程 tag

例:
显示本地 tag
bash$  git tag 
Remote_Systems_Operation

删除本地tag
bash$  git tag -d Remote_Systems_Operation 
Deleted tag 'Remote_Systems_Operation' (was 66d412b)

显示本地tag, 些是为空
bash$  git tag 

用push, 删除远程tag
bash$  git push origin :refs/tags/Remote_Systems_Operation
To git://128.224.158.21/dfe_auto
- [deleted]         Remote_Systems_Operation
bash$  
相关文章
相关标签/搜索