关于 用git clone 命令时报错RPC failed; curl 56 Recv failure....’ 的解决办法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于 用git clone 命令时报错RPC failed; curl 56 Recv failure....’ 的解决办法相关的知识,希望对你有一定的参考价值。
参考技术A 1、查看当前配置命令2、httpBuffer加大
3、压缩配置
4、修改配置文件
摘自 https://blog.csdn.net/qq_34121797/article/details/79561110 做此记录方便查看
如果以上方法试过都没用,很有可能是服务器那边仓库相关配置的设置不对
git clone时RPC failed; curl 18 transfer closed with outstanding read data remaining
git clone时报RPC failed; curl 18 transfer closed with outstanding read data remaining 错误
原因1:缓存区溢出
解决方法:命令行输入
git config http.postBuffer 524288000
执行上面命令如果依旧clone失败,考虑可能原因2:网络下载速度缓慢
解决方法:命令行输入
git config --global http.lowSpeedLimit 0 git config --global http.lowSpeedTime 999999
如果依旧clone失败,则首先浅层clone,然后更新远程库到本地
git clone --depth=1 http://gitlab.xxx.cn/yyy/zzz.git git fetch --unshallow
以上是关于关于 用git clone 命令时报错RPC failed; curl 56 Recv failure....’ 的解决办法的主要内容,如果未能解决你的问题,请参考以下文章
git clone时RPC failed; curl 18 transfer closed with outstanding read data remaining
解决git clone时报错:The requested URL returned error: 401 Unauthorized while accessing
网络原因导致的 spring cloud config 读取git上的配置文件时报错:Cannot clone or checkout repository
使用git clone命令报错:error: RPC failed; curl 18 transfer closed with outstanding read data remaining(示例代码