Skip to content

Instantly share code, notes, and snippets.

@vitorhugomagalhaes
Created July 12, 2019 11:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vitorhugomagalhaes/6aac0a20d476f3fe4ffd7a29afb2e141 to your computer and use it in GitHub Desktop.
Save vitorhugomagalhaes/6aac0a20d476f3fe4ffd7a29afb2e141 to your computer and use it in GitHub Desktop.
Delete git tags #git #delete
#Fetch remote tags.
git fetch
#Delete remote tags.
git push origin --delete $(git tag -l)
#Delete local tags.
git tag -d $(git tag -l)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment