来自GitHub RPC的git clone失败; result = 56,HTTP代码

时间:2015-10-16 11:24:54

标签: git github

当我从GitHub克隆存储库时,我遇到了这个错误。我已经尝试了很多次,但我从未成功过。

git clone https://github.com/cocos2d/cocos2d-x.git
Cloning into 'cocos2d-x'...
remote: Counting objects: 397914, done.
remote: Compressing objects: 100% (19/19), done.
error: RPC failed; result=56, HTTP code = 200 MiB | 0 bytes/s      
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed

我已经看过这个question,但我没有安装Avast。我该如何解决?

编辑:

根据这个question,我通过运行此命令git config --global http.postBuffer 2M增加了我的git缓冲区。

我在zsh下使用Mac OSX。

1 个答案:

答案 0 :(得分:4)

我设置git buffer之后已经尝试了好几次,就像我在问题中提到的那样,它现在似乎有用了。

因此,如果您遇到此错误,请运行以下命令:

git config --global http.postBuffer 2M

然后再试一次。

参考:

git push error: RPC failed; result=56, HTTP code = 0