Skip to content

Instantly share code, notes, and snippets.

View hartraft's full-sized avatar
🍻

hartraft

🍻
  • Belgium
View GitHub Profile
@hartraft
hartraft / free-backend-hosting.md
Created August 1, 2023 10:15 — forked from bmaupin/free-backend-hosting.md
Free backend hosting
@hartraft
hartraft / git-del-tags-regex.sh
Last active July 2, 2019 09:37 — 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 push origin --delete $(git tag -l "DEV-*")
# delete all your local tags
git tag -d $(git tag -l "DEV-*")
# fetch the remote tags which still remain
git fetch