Skip to content

Instantly share code, notes, and snippets.

View jasoncable's full-sized avatar

Jason Cable jasoncable

View GitHub Profile
@jasoncable
jasoncable / gist:07e1f9a9ebab460e89a13b04d4da730e
Created May 2, 2022 19:21 — forked from shsteimer/gist:7257245
Tip to delete tags by pattern
#delete all the remote tags with the pattern your looking for, ie. DEV-
git tag | grep <pattern> | xargs -n 1 -i% git push origin :refs/tags/%
#delete all your local tags
git tag | xargs -n 1 -i% git tag -d %
#fetch the remote tags which still remain
git fetch