#!/bin/sh

set -e

BRANCHES="${*}"

for BRANCH in ${BRANCHES}
do
	git push origin :"${BRANCH}"
done
