tj.git-extras/bin/git-delete-tag
2010-08-27 10:41:50 -07:00

4 lines
102 B
Bash
Executable file

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