帮助中心
Git克隆错误'RPC failed; curl 56 Recv failure
Git 克隆错误‘RPC failed; curl 56 Recv failure....’ 及克隆速度慢问题解决
一、问题现象
在网络情况不稳定下克隆项目时,可能会出现如下错误:
RPC failed; curl 56 Recv failure....
二、解决方案
修改git配置:
1、查看当前配置命令
git config -l
2、httpBuffer加大
git config --global http.postBuffer 824288000 git config --global https.postBuffer 824288000
3、压缩配置
git config --global core.compression -1
4、修改配置文件
git config --global https.lowSpeedLimit 0 git config --global https.lowSpeedTime 999999 git config --global http.lowSpeedLimit 0 git config --global http.lowSpeedTime 999999
另外以上配置文件修改后,能提升git克隆速度。
:) 非常感谢您的支持,我们会努力为您提供更好的服务和帮助
点击提交工单,获得在线支持