Browse Source

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

Luis Ferrer-Labarca 8 years ago
parent
commit
e9793fc199
1 changed files with 1 additions and 0 deletions
  1. 1 0
      plugins/git/git.plugin.zsh

+ 1 - 0
plugins/git/git.plugin.zsh

@@ -46,6 +46,7 @@ alias gapa='git add --patch'
 
 
 alias gb='git branch'
 alias gb='git branch'
 alias gba='git branch -a'
 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 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 gbl='git blame -b -w'
 alias gbnm='git branch --no-merged'
 alias gbnm='git branch --no-merged'