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 --glob…