码迷,mamicode.com
首页 > Web开发 > 详细

error: RPC failed; curl 18 transfer closed with outstanding read data remaining的解决

时间:2020-02-06 16:53:01      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:closed   https   post   nsf   led   erro   err   sed   fail   

解决方案也是网上搜的,总结一下

一,加大缓存区
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的解决

标签:closed   https   post   nsf   led   erro   err   sed   fail   

原文地址:https://www.cnblogs.com/DXGG-Bond/p/12268864.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!