tj.git-extras/bin/git-delete-tag
2012-01-25 11:52:08 -05:00

6 lines
137 B
Bash
Executable file

#!/bin/sh
tagname=$1
test -z $tagname && echo "tag required." 1>&2 && exit 1
git tag -d $tagname && git push origin :refs/tags/$tagname