Skip to content

Instantly share code, notes, and snippets.

@gabrielgodoy-zz
Last active December 19, 2016 23:57
Show Gist options
  • Save gabrielgodoy-zz/6210b060ada8c8be9443d0f6dd0e0065 to your computer and use it in GitHub Desktop.
Save gabrielgodoy-zz/6210b060ada8c8be9443d0f6dd0e0065 to your computer and use it in GitHub Desktop.
Delete all tags from repositories
for t in `git tag`
do
git push origin :$t
git tag -d $t
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment