Skip to content

Commit

Permalink
[plugins/git] Updated git clone alias (ohmyzsh#6893)
Browse files Browse the repository at this point in the history
* Updated git clone alias

`git clone --recursive` has been deprecated in favor of `--recurse-submodules`.  
See: https://stackoverflow.com/questions/3796927
  • Loading branch information
kkalavantavanich authored and chihchun committed Aug 6, 2019
1 parent b8644a0 commit e4f6192
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/git/git.plugin.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ alias gcam='git commit -a -m'
alias gcsm='git commit -s -m'
alias gcb='git checkout -b'
alias gcf='git config --list'
alias gcl='git clone --recursive'
alias gcl='git clone --recurse-submodules'
alias gclean='git clean -fd'
alias gpristine='git reset --hard && git clean -dfx'
alias gcm='git checkout master'
Expand Down

0 comments on commit e4f6192

Please sign in to comment.