Skip to content

Instantly share code, notes, and snippets.

@jaseemabid
jaseemabid / git tutorials.md
Last active December 18, 2024 14:58 — forked from netroy/git tutorials.md
Awesome git tutorials I am finding here and there
@matthewmccullough
matthewmccullough / git-deletealltags.bsh
Created April 1, 2011 20:29
Script to delete all tags both locally and remotely
for t in `git tag`
do
git push origin :$t
git tag -d $t
done