先浅层clone
$ git clone --depth=1 http://xxx.git
浅层clone
成功后,再完整拉取:
$ git fetch --unshallow # 拉取完整当前分支 $ git remote set-branches origin '*' # 追踪所有远程分支 $ git fetch -v # 拉取所有远程分支
2024-03-02 14:15:34
先浅层clone
$ git clone --depth=1 http://xxx.git
浅层clone
成功后,再完整拉取:
$ git fetch --unshallow # 拉取完整当前分支 $ git remote set-branches origin '*' # 追踪所有远程分支 $ git fetch -v # 拉取所有远程分支