Merge branch 'integration'

This commit is contained in:
Tj Holowaychuk 2010-08-27 10:41:55 -07:00
commit c187a50608
2 changed files with 2 additions and 4 deletions

View file

@ -1,5 +1,4 @@
#!/bin/sh
test -z $1 && echo "branch required." && exit 1
git branch -D $1
git push origin :$1
git branch -d $@ && git push origin :$1

View file

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