git删除tag

发布时间: 2010/1/22, 类别: 编程

用git删除tag的方法如下:

删除本地tag

比如tag是v1.0.0

git tag -d v1.0.0

删除远程tag

git push origin :refs/tags/v1.0.0
 

请您留言