change alias to gfcr

This commit is contained in:
Khai Do 2017-06-22 13:18:16 -07:00 committed by Kaleb Elwert
parent d69070268a
commit ebae698f70
2 changed files with 2 additions and 1 deletions

View File

@ -102,6 +102,7 @@ Aliases are enabled by default. You can disable them with:
- `gf` downloads objects and references from another repository.
- `gfa` downloads objects and references from all remote repositories.
- `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.
- `gfr` fetches from and rebases on another repository or local branch.

View File

@ -92,7 +92,7 @@ if ! zstyle -t ':prezto:module:git:alias' skip 'yes'; then
alias gf='git fetch'
alias gfa='git fetch --all'
alias gfc='git clone'
alias gfcs='git clone --recurse-submodules'
alias gfcr='git clone --recurse-submodules'
alias gfm='git pull'
alias gfr='git pull --rebase'