git clone 大文件 eof 错误
在代码仓库体积较大或网络状况不佳的情况下,推拉仓库需要大量的时间,有时会经常失败,除了使用 Git LFS 提效外,但配置上稍烦,我们可以使用以下两张方式来尝试解决,基本上可以满足。
解决方式一:采用 ssh 方式
shell
git clone git@address/git/xxx.git
# 如果 ssh 依旧提示 early EOF,后面追加"compression=-1" 或者 "postBuffer=524288000"
git clone git@address/git/xxx.git compression=-1
解决方式二:加大 https 缓存
shell
git config https.postBuffer 524288000
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999