Skip to content

Instantly share code, notes, and snippets.

@lucis
Created April 3, 2020 17:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lucis/cde74fac980f3ed5d120a0fcb827d3a6 to your computer and use it in GitHub Desktop.
Save lucis/cde74fac980f3ed5d120a0fcb827d3a6 to your computer and use it in GitHub Desktop.
Removing ALL git tags for a Repo
git tag -l | xargs git tag -d && git fetch && git tag -l | xargs -n 1 git push --delete origin && git tag -l | xargs git tag -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment