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

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

一下方案也是在网上找到的

方案一

     clone https方式换成SSH的方式,把 https:// 改为 git://
     例:git clone https://github.com/libgit2/libgit2
     改为:git clone git://github.com/libgit2/libgit2

方案二

    加大缓存区 治标不治本
    git config --global http.postBuffer 500000000

方案三

    少clone一些,每个文件只取最近一次提交,不是整个历史版本
    git clone https://github.com/flutter/flutter.git --depth 1

 

你可能感兴趣的:(error: RPC failed; curl 18 transfer closed with outstanding read data remaining的解决方法)