Created
December 10, 2012 21:23
-
-
Save fgrehm/4253540 to your computer and use it in GitHub Desktop.
Delete multiple git tags
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for tag in $(git tag | grep -E 'v0\.([0-5])'); do git tag -d $tag && git push origin :refs/tags/$tag; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment