Created
February 20, 2021 20:19
-
-
Save rolspace/9f8ccb830df57d7494f488c3730d70bb to your computer and use it in GitHub Desktop.
Tag Cleanup
This file contains 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
# delete remote tags containing the word "text" | |
git push --delete origin `git tag --list "*text*"` | |
# delete local tags containing the word "text" | |
git tag -d `git tag --list "core@v0*-test.*"` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment