fatal: The remote end hung up unexpectedly

1、修改当前项目的postBuffer的大小。(设置为500MB)

 git config --local http.postBuffer 524288000

注:--local选项指定这个设置只对当前仓库生效。
2、修改当前项目.git目录下config文件,添加以下内容。

[http]
    postBuffer = 524288000

3、修改全局postBuffer的大小。(设置为500MB)

git config --global http.postBuffer 524288000

4、修改git的最低速度和最低速度时间(单位:秒 )。

git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999 

每次fatal的时候就就一次一次重试吧。

你可能感兴趣的:(fatal: The remote end hung up unexpectedly)