mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-08-07 06:08:39 +02:00
Updated git clone alias
`git clone --recursive` has been deprecated in favor of `--recurse-submodules`. See: https://stackoverflow.com/questions/3796927
This commit is contained in:
parent
6ace3cd18d
commit
9a393e9c0c
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ alias gcam='git commit -a -m'
|
||||||
alias gcsm='git commit -s -m'
|
alias gcsm='git commit -s -m'
|
||||||
alias gcb='git checkout -b'
|
alias gcb='git checkout -b'
|
||||||
alias gcf='git config --list'
|
alias gcf='git config --list'
|
||||||
alias gcl='git clone --recursive'
|
alias gcl='git clone --recurse-submodules -j8'
|
||||||
alias gclean='git clean -fd'
|
alias gclean='git clean -fd'
|
||||||
alias gpristine='git reset --hard && git clean -dfx'
|
alias gpristine='git reset --hard && git clean -dfx'
|
||||||
alias gcm='git checkout master'
|
alias gcm='git checkout master'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue