Gitclone异常RPCfailed;result=18,HTTPcode=200MiB
温馨提示:
本文最后更新于 2017年03月17日,已超过 2,806 天没有更新。若文章内的图片失效(无法正常加载),请留言反馈或直接联系我。
今天clone项目的时候报异常
$ git clone https://github.com/aws/aws-sdk-java.git
Cloning into 'aws-sdk-java'...
remote: Counting objects: 399289, done.
remote: Compressing objects: 100% (11/11), done.
error: RPC failed; result=18, HTTP code = 200 MiB | 0 bytes/s
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
因为这个库中有很多项目,整个库非常大。最后查找资料知道是curl的postBuffer 默认值较小的原因,需要进行以下配置
git config http.postBuffer 24288000
然后可以通过以下命令查看设置情况
git config --get http.postBuffer
设置完成后,尝试重新clone即可
参考:http://stackoverflow.com/questions/17683295/git-bash-error-rpc-failed-result-18-htp-code-200b-1kib-s
正文到此结束
- 本文标签: Git
- 本文链接: https://zhyd.me/article/49
- 版权声明: 本文由张亚东原创发布,转载请遵循《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》许可协议授权