git删除所有分支

Terwer...小于 1 分钟经验分享gitrmrepo删除分支

To delete all the local tags simple run the following command

git tag | xargs git tag -d

To delete remote tags after deleting the local tags by running the above command, you can run the comand below

git ls-remote --tags --refs origin | cut -f2 | xargs git push origin --delete

NOTE: replace origin with your remote handler

评论
  • 按正序
  • 按倒序
  • 按热度
Powered by Waline v2.14.9