Added 'gbd' alias for 'git branch -d' (#5417)

This commit is contained in:
Luis Ferrer-Labarca 2016-09-19 22:50:16 -04:00 committed by Robby Russell
parent 89048668bd
commit e9793fc199
1 changed files with 1 additions and 0 deletions

View File

@ -46,6 +46,7 @@ alias gapa='git add --patch'
alias gb='git branch'
alias gba='git branch -a'
alias gbd='git branch -d'
alias gbda='git branch --no-color --merged | command grep -vE "^(\*|\s*(master|develop|dev)\s*$)" | command xargs -n 1 git branch -d'
alias gbl='git blame -b -w'
alias gbnm='git branch --no-merged'