Delete every git tag
Remove all local tags, then delete the same names on origin.
18th August 2026
git tag | xargs git tag -d
git fetch
git tag | xargs git push origin --delete
git tag | xargs git tag -d
Caveats
Destructive. Deletes every tag locally and on origin. Do not run on a repo you care about.