git删除所有分支

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

posted @ 2022-10-23 19:07  灯塔下的守望者  阅读(18)  评论(0编辑  收藏  举报