Skip to content

Instantly share code, notes, and snippets.

@boywijnmaalen
Last active April 9, 2018 05:14
Show Gist options
  • Save boywijnmaalen/0e05e9e495f60905d410 to your computer and use it in GitHub Desktop.
Save boywijnmaalen/0e05e9e495f60905d410 to your computer and use it in GitHub Desktop.
Remove git tags
# removes all tags remotly
$ git tag -l | xargs -n 1 git push --delete origin
# removes all tags locally
$ git tag | xargs git tag -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment