dotfiles/git/git-delete-branch
2011-11-09 12:00:28 -05:00

6 lines
109 B
Bash
Executable file

#!/bin/bash
# remove remote git branch
# usage: git delete-branch name
git branch -D $1
git push origin :$1