Merge pull request #155 from themalkolm/patch-4

Delete tag on origin even if it wasn't locally fetched yet.
This commit is contained in:
TJ Holowaychuk 2012-11-20 15:19:30 -08:00
commit 446bcd6f11

View file

@ -2,4 +2,5 @@
tagname=$1
test -z $tagname && echo "tag required." 1>&2 && exit 1
git tag -d $tagname && git push origin :refs/tags/$tagname
git tag -d $tagname
git push origin :refs/tags/$tagname