Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 256 Bytes

Github.md

File metadata and controls

9 lines (7 loc) · 256 Bytes

怎样删除 GitHub 项目上打的标签

删除标签
git tag -d [tag]
git push origin :[tag]

如果你的标签与其中某一个分支具有相同的名称,那么使用下面的命令
git tag -d [tag]
git push origin :refs/tags/[tag]