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