Skip to content

Instantly share code, notes, and snippets.

@leonardobiffi
Forked from okunishinishi/Remove all git tags
Created July 12, 2022 11:59
Show Gist options
  • Save leonardobiffi/9ceb3e882c7b78efc8b78139906c51b8 to your computer and use it in GitHub Desktop.
Save leonardobiffi/9ceb3e882c7b78efc8b78139906c51b8 to your computer and use it in GitHub Desktop.
Delete all git remote tags
#Delete local tags.
git tag -l | xargs git tag -d
#Fetch remote tags.
git fetch
#Delete remote tags.
git tag -l | xargs -n 1 git push --delete origin
#Delete local tasg.
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