Remove all tags from git repo
Published on 6 March 2014 at 10:27 by
I had started to tag builds with a branch name and date, but after a while, these started to make the log unreadable. It was time to Arnold Schwarzenegger-ize them.
I found this somewhere online:
for t in `git tag`
do
git push origin :$t
git tag -d $t
done
Saved it to removetags.sh
, ran it, and now my life (and log) is much happier.