乐趣区

关于git:Git常见错误及解决办法收集

git clone 谬误

error: RPC 失败。curl 18 transfer closed with outstanding read data remaining

谬误截图

可能起因 1:缓存溢出
解决办法:

git config http.postBuffer 524288000

可能起因 2:下载速度太慢
解决办法

git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999

如果仍然失败,可思考先浅层次 Clone,而后再残缺 fetch

git clone --depth=1 http://gitlab.xxx.cn/yyy/zzz.git
git fetch --unshallow
退出移动版