mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-11 00:10:08 +00:00
Fix gbda alias to support color.ui = always
+ exclude dev branches (#4304)
* Fix gbda alias to support git config color.ui = always * Update gbda alias to exclude develop and dev branches
This commit is contained in:
parent
508b80c1e1
commit
f5537241a4
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ alias gapa='git add --patch'
|
|||
|
||||
alias gb='git branch'
|
||||
alias gba='git branch -a'
|
||||
alias gbda='git branch --merged | command grep -vE "^(\*|\s*master\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 gbnm='git branch --no-merged'
|
||||
alias gbr='git branch --remote'
|
||||
|
|
Loading…
Reference in a new issue