Skip to content

Instantly share code, notes, and snippets.

@orlovmax
orlovmax / git-remove-tags.md
Created January 8, 2016 23:26
Delete tags

To delete remote tags (before deleting local tags) simply do:

git tag -l | xargs -n 1 git push --delete origin

and then delete the local copies:

git tag | xargs git tag -d

@orlovmax
orlovmax / gallery.sh
Created February 12, 2017 00:51
Bash gallery generator (slow)