Skip to content

Instantly share code, notes, and snippets.

@Kurtz1993
Created October 26, 2017 21:25
Show Gist options
  • Save Kurtz1993/6034c6ae3de458dbc7864cf181440344 to your computer and use it in GitHub Desktop.
Save Kurtz1993/6034c6ae3de458dbc7864cf181440344 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.
# Pushing once should be faster than multiple times
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