Skip to content

Instantly share code, notes, and snippets.

@weaponsforge
Last active May 30, 2023 11:04
Show Gist options
  • Save weaponsforge/026e18167ad7c4a5b77f001c7d083084 to your computer and use it in GitHub Desktop.
Save weaponsforge/026e18167ad7c4a5b77f001c7d083084 to your computer and use it in GitHub Desktop.
Delete all remote and local git tags
# Delete all remote tags
git tag | xargs -L 1 | xargs git push origin --delete
# Delete all local tags
git tag | xargs -L 1 | xargs git tag --delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment