mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-15 01:48:34 -07:00
feat(git): add gcB
alias (#12116)
This commit is contained in:
parent
3e92d251ba
commit
ec74eb91bd
@ -51,6 +51,7 @@ plugins=(... git)
|
|||||||
| `gco` | `git checkout` |
|
| `gco` | `git checkout` |
|
||||||
| `gcor` | `git checkout --recurse-submodules` |
|
| `gcor` | `git checkout --recurse-submodules` |
|
||||||
| `gcb` | `git checkout -b` |
|
| `gcb` | `git checkout -b` |
|
||||||
|
| `gcB` | `git checkout -B` |
|
||||||
| `gcd` | `git checkout $(git_develop_branch)` |
|
| `gcd` | `git checkout $(git_develop_branch)` |
|
||||||
| `gcm` | `git checkout $(git_main_branch)` |
|
| `gcm` | `git checkout $(git_main_branch)` |
|
||||||
| `gcp` | `git cherry-pick` |
|
| `gcp` | `git cherry-pick` |
|
||||||
|
@ -157,6 +157,7 @@ alias gbg='LANG=C git branch -vv | grep ": gone\]"'
|
|||||||
alias gco='git checkout'
|
alias gco='git checkout'
|
||||||
alias gcor='git checkout --recurse-submodules'
|
alias gcor='git checkout --recurse-submodules'
|
||||||
alias gcb='git checkout -b'
|
alias gcb='git checkout -b'
|
||||||
|
alias gcB='git checkout -B'
|
||||||
alias gcd='git checkout $(git_develop_branch)'
|
alias gcd='git checkout $(git_develop_branch)'
|
||||||
alias gcm='git checkout $(git_main_branch)'
|
alias gcm='git checkout $(git_main_branch)'
|
||||||
alias gcp='git cherry-pick'
|
alias gcp='git cherry-pick'
|
||||||
|
Loading…
Reference in New Issue
Block a user