美文网首页
Remove all git tags

Remove all git tags

作者: PokerMman181 | 来源:发表于2020-04-24 15:02 被阅读0次
#Delete local tags.
git tag -l | xargs git tag -d
#Fetch remote tags.
git fetch
#Delete remote tags.
git tag -l | xargs -n 1 git push --delete origin
#Delete local tasg.
git tag -l | xargs git tag -d

相关文章

网友评论

      本文标题:Remove all git tags

      本文链接:https://www.haomeiwen.com/subject/cgjfwhtx.html