git

git 如何删除所有 tag(本地和远程)

删除本地tag

git tag -d $(git tag -l)


拉取远程tag

git fetch


删除远程tag

git push origin --delete $(git tag -l) # Pushing once should be faster than multiple times

删除本地tag

git tag -d $(git tag -l)