Skip to content

Instantly share code, notes, and snippets.

@aaronwalker
Created October 6, 2014 06:52
Show Gist options
  • Select an option

  • Save aaronwalker/f660e91c347c0da388d2 to your computer and use it in GitHub Desktop.

Select an option

Save aaronwalker/f660e91c347c0da388d2 to your computer and use it in GitHub Desktop.
bulk git tag delete
while read tag; do
echo deleting $tag
git tag -d $tag
git push upstream :refs/tags/$tag
done </tmp/tags
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment