Skip to content

Instantly share code, notes, and snippets.

@kuba--
Created February 27, 2019 13:00
Show Gist options
  • Save kuba--/f55ebda7cc623efefee60a214884c6d7 to your computer and use it in GitHub Desktop.
Save kuba--/f55ebda7cc623efefee60a214884c6d7 to your computer and use it in GitHub Desktop.
#Delete local tags.
git tag -d $(git tag -l)
#Fetch remote tags.
git fetch
#Delete remote tags.
git push origin --delete $(git tag -l) # Pushing once should be faster than multiple times
#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