Add command to delete already merged branches

This commit is contained in:
Steven Barragán
2015-09-23 11:16:01 -07:00
parent cf6bb61336
commit 3acd89108c
2 changed files with 2 additions and 0 deletions

View File

@@ -128,6 +128,7 @@ alias gsmu='git submodule update'
alias gt='git t'
alias gbg='git bisect good'
alias gbb='git bisect bad'
alias gdmb='git branch --merged | grep -v "\*" | xargs -n 1 git branch -d'
# Common shell functions
alias less='less -r'