Commit f5537241 authored by Cédric Malard's avatar Cédric Malard Committed by Marc Cornellà
Browse files

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
parent 508b80c1
......@@ -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'
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment