dotfiles/git/git-delete-branch
2012-06-23 12:40:50 -04: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