Skip to content

Instantly share code, notes, and snippets.

@ozh
Created April 16, 2013 21:29
Show Gist options
  • Save ozh/5399814 to your computer and use it in GitHub Desktop.
Save ozh/5399814 to your computer and use it in GitHub Desktop.
Git: delete all tags, locally and remotely
for t in `git tag`; do git tag -d $t; git push origin :$t; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment