#‘’
-
Git仓库过大致使clone失败的解决方法
-
上述大神的方法,亲测有效
中途失败: 太大了
fetch-pack: unexpected disconnect while reading sideband packet
fatal: early EOF
fatal: fetch-pack: invalid index-pack output
关闭压缩
git config --global core.compression 0
最近一次提交
git clone -b develop_nosu --depth 1 [仓库链接]
获取完整库
_
git fetch --unshallow
延长克隆的时间
git config --global http.postBuffer 600000
最后pull一下
git pull --all