GIT删除、新建、推送标签

(1)删除标签
 
  $ git tag -d v0.9 git push origin :refs/tags/v0.9
 
(2)新建标签
 
  git tag -a V1.0 -m 'V1.0'
 
(3)推送至远程仓库
 
  git push origin V1.0
原文地址:https://www.cnblogs.com/sunzhihua/p/9968354.html