Added -d -> -D. Closes #15

This commit is contained in:
Tj Holowaychuk 2010-10-25 14:03:41 -07:00
parent 306a1b37b9
commit c9540edc9e

View file

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