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

5 lines
99 B
Bash
Executable file

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