Skip to content

Instantly share code, notes, and snippets.

@brunogama
Created January 30, 2015 16:45
Show Gist options
  • Save brunogama/8724d07f0e211a9d0518 to your computer and use it in GitHub Desktop.
Save brunogama/8724d07f0e211a9d0518 to your computer and use it in GitHub Desktop.
Bulk delete local git tags
git tag -l | awk '/^(.*[a-z])$/ {print $1}' | xargs git tag -d
@brunogama
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment