diff options
author | Luis Ferrer-Labarca <ferrerluis97@gmail.com> | 2016-09-19 22:50:16 -0400 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2016-09-19 19:50:16 -0700 |
commit | e9793fc1995254172338bc53082d704b22d31a0d (patch) | |
tree | 5d5cefd8f7867510003bd2421d980465565f6535 /plugins | |
parent | 89048668bdf4231b27e8249352087d1ccb46d447 (diff) | |
download | zsh-e9793fc1995254172338bc53082d704b22d31a0d.tar.gz zsh-e9793fc1995254172338bc53082d704b22d31a0d.tar.bz2 zsh-e9793fc1995254172338bc53082d704b22d31a0d.zip |
Added 'gbd' alias for 'git branch -d' (#5417)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/git/git.plugin.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 6197c234b..25da03509 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -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' |