mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-05 01:46:46 +01:00
fix(git): some aliases under non-english LANG (#11855)
This commit is contained in:
parent
33c0de7add
commit
c92af18c36
2 changed files with 6 additions and 6 deletions
|
|
@ -40,12 +40,12 @@ plugins=(... git)
|
|||
| gbd | git branch --delete |
|
||||
| gbD | git branch --delete --force |
|
||||
| gbda | git branch --no-color --merged | grep -vE "^([+]|\s($(git_main_branch)|$(git_develop_branch))\s\*$)" | xargs git branch --delete 2>/dev/null |
|
||||
| gbgd | git branch --no-color -vv |
|
||||
| gbgD | git branch --no-color -vv |
|
||||
| gbgd | LANG=C git branch --no-color -vv | grep ": gone\]" | awk '"'"'{print $1}'"'"' | xargs git branch -d |
|
||||
| gbgD | LANG=C git branch --no-color -vv | grep ": gone\]" | awk '"'"'{print $1}'"'"' | xargs git branch -D |
|
||||
| gbnm | git branch --no-merged |
|
||||
| gbr | git branch --remote |
|
||||
| ggsup | git branch --set-upstream-to=origin/$(git_current_branch) |
|
||||
| gbg | git branch -vv |
|
||||
| gbg | LANG=C git branch -vv | grep ": gone\]" |
|
||||
| gco | git checkout |
|
||||
| gcor | git checkout --recurse-submodules |
|
||||
| gcb | git checkout -b |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue