Delete local and remote branch
Sometimes you want a branch to go away completely
# local
$ git branch -d <branch_name>
# remote
$ git push origin --delete <branch_name>
I have created a little utility in my path with the above code. Available as a Gist.