Skip to content

Instantly share code, notes, and snippets.

@rolspace
Created February 20, 2021 20:19
Show Gist options
  • Save rolspace/9f8ccb830df57d7494f488c3730d70bb to your computer and use it in GitHub Desktop.
Save rolspace/9f8ccb830df57d7494f488c3730d70bb to your computer and use it in GitHub Desktop.
Tag Cleanup
# 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