@@ -0,0 +1,6 @@
+#!/usr/bin/env bash
+
+set -eu
+git branch -d $1
+git push origin :$1
@@ -0,0 +1,7 @@
+BRANCH=`git symbolic-ref --short HEAD`
+REMOTE=`git config branch.$BRANCH.remote`
+git reset $REMOTE/$BRANCH $*