Skip to content

Instantly share code, notes, and snippets.

@vctrtvfrrr
Created August 2, 2018 14:40
Show Gist options
  • Select an option

  • Save vctrtvfrrr/7cfc1e5aff4325e55601c73e89c88d8c to your computer and use it in GitHub Desktop.

Select an option

Save vctrtvfrrr/7cfc1e5aff4325e55601c73e89c88d8c to your computer and use it in GitHub Desktop.
Remove git tags local and remotely
# 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