Skip to content

Instantly share code, notes, and snippets.

@dminca
Created June 22, 2015 07:14
Show Gist options
  • Select an option

  • Save dminca/fc663de1f3ed1f5dabd7 to your computer and use it in GitHub Desktop.

Select an option

Save dminca/fc663de1f3ed1f5dabd7 to your computer and use it in GitHub Desktop.
Delete git tags both on local and remote

Delete all git tags:

On local

git tag | xargs git tag -d

On remote

git tag -l | xargs -n 1 git push --delete origin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment