mirror of
https://github.com/dcarrillo/prezto.git
synced 2024-12-22 18:38:00 +00:00
change alias to gfcr
This commit is contained in:
parent
d69070268a
commit
ebae698f70
@ -102,6 +102,7 @@ Aliases are enabled by default. You can disable them with:
|
|||||||
- `gf` downloads objects and references from another repository.
|
- `gf` downloads objects and references from another repository.
|
||||||
- `gfa` downloads objects and references from all remote repositories.
|
- `gfa` downloads objects and references from all remote repositories.
|
||||||
- `gfc` clones a repository into a new directory.
|
- `gfc` clones a repository into a new directory.
|
||||||
|
- `gfcr` clones a repository into a new directory including all submodules.
|
||||||
- `gfm` fetches from and merges with another repository or local branch.
|
- `gfm` fetches from and merges with another repository or local branch.
|
||||||
- `gfr` fetches from and rebases on another repository or local branch.
|
- `gfr` fetches from and rebases on another repository or local branch.
|
||||||
|
|
||||||
|
@ -92,7 +92,7 @@ if ! zstyle -t ':prezto:module:git:alias' skip 'yes'; then
|
|||||||
alias gf='git fetch'
|
alias gf='git fetch'
|
||||||
alias gfa='git fetch --all'
|
alias gfa='git fetch --all'
|
||||||
alias gfc='git clone'
|
alias gfc='git clone'
|
||||||
alias gfcs='git clone --recurse-submodules'
|
alias gfcr='git clone --recurse-submodules'
|
||||||
alias gfm='git pull'
|
alias gfm='git pull'
|
||||||
alias gfr='git pull --rebase'
|
alias gfr='git pull --rebase'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user