Skip to content

Instantly share code, notes, and snippets.

@orlovmax
Created January 8, 2016 23:26
Show Gist options
  • Select an option

  • Save orlovmax/6ad581a5a3d162677b09 to your computer and use it in GitHub Desktop.

Select an option

Save orlovmax/6ad581a5a3d162677b09 to your computer and use it in GitHub Desktop.
Delete tags

To delete remote tags (before deleting local tags) simply do:

git tag -l | xargs -n 1 git push --delete origin

and then delete the local copies:

git tag | xargs git tag -d

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment