libs文件太大clone不下来怎么办
先浅层clone
$ git clone --depth=1 http://xxx.git
浅层clone
成功后,再完整拉取:
$ git fetch --unshallow # 拉取完整当前分支 $ git remote set-branches origin '*' # 追踪所有远程分支 $ git fetch -v # 拉取所有远程分支
先浅层clone
$ git clone --depth=1 http://xxx.git
浅层clone
成功后,再完整拉取:
$ git fetch --unshallow # 拉取完整当前分支 $ git remote set-branches origin '*' # 追踪所有远程分支 $ git fetch -v # 拉取所有远程分支