本文主要是介绍error: RPC failed; curl 18 transfer closed with outstanding read data remaining的解决,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
解决方案也是网上搜的,总结一下
一,加大缓存区
git config --global http.postBuffer 524288000
这个大约是500M
二、少clone一些,–depth 1
git clone https://github.com/flutter/flutter.git --depth 1
–depth 1的含义是复制深度为1,就是每个文件只取最近一次提交,不是整个历史版本。
三、换协议
clone http方式换成SSH的方式,即 https:// 改为 git://
例如git clone https://github.com/flutter/flutter.git
换成git clone git://github.com/flutter/flutter.git
这篇关于error: RPC failed; curl 18 transfer closed with outstanding read data remaining的解决的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!