Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
d8f674cc
Unverified
Commit
d8f674cc
authored
May 21, 2020
by
Mikael Andersson Wigander
Committed by
GitHub
May 21, 2020
Browse files
git: exclude 'development' in gdba alias (#8902)
parent
31c2dc32
Changes
2
Show whitespace changes
Inline
Side-by-side
plugins/git/README.md
View file @
d8f674cc
...
...
@@ -22,7 +22,7 @@ plugins=(... git)
| gb | git branch |
| gba | git branch -a |
| gbd | git branch -d |
| gbda | git branch --no-color --merged
\|
command grep -vE "^(
\+\|\*\|\s
*(master\|develop\|dev)\s*
$)"
\|
command xargs -n 1 git branch -d |
| gbda | git branch --no-color --merged
\|
command grep -vE "^(
\+\|\*\|\s
*(master\|
development\|
develop\|dev)\s*
$)"
\|
command xargs -n 1 git branch -d |
| gbD | git branch -D |
| gbl | git blame -b -w |
| gbnm | git branch --no-merged |
...
...
plugins/git/git.plugin.zsh
View file @
d8f674cc
...
...
@@ -42,7 +42,7 @@ alias gap='git apply'
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
gbda
=
'git branch --no-color --merged | command grep -vE "^(\+|\*|\s*(master|
development|
develop|dev)\s*$)" | command xargs -n 1 git branch -d'
alias
gbD
=
'git branch -D'
alias
gbl
=
'git blame -b -w'
alias
gbnm
=
'git branch --no-merged'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment