Git 克隆问题-The remote end hung up unexpectedly

方法一:重新下载即可
方法二:如方法一尝试后,仍然不可,请参考如下。

===============================

从GitHub上克隆一个项目一直不成功!猜想可能是文件太大超时或者网络太慢超时!

 

解决方案:

配置

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

增加最低速时间,but,还是不行!

公司网络太不稳定了!

 

 继续修改

2、httpBuffer加大    

git config --global http.postBuffer 524288000

3、压缩配置

git config --global core.compression -1