Skip to content

Instantly share code, notes, and snippets.

@brunogama
Created January 30, 2015 16:43
Show Gist options
  • Save brunogama/479f49f37667c5e1c52d to your computer and use it in GitHub Desktop.
Save brunogama/479f49f37667c5e1c52d to your computer and use it in GitHub Desktop.
Bulk delete remote git tags
git ls-remote --tags origin | awk '/^(.*)(\s+)(.*[a-z])$/ {print ":" $2}' | xargs git push origin
@brunogama
Copy link
Author

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