#!/bin/sh

test -z $1 && echo "branch required." && exit 1
git branch -d $@ && git push origin :$1
