git clone 过程中遇到 'the remote end hung up unexpectedly'

git上克隆一直不成功,可能是文件太大或者网络不稳定

image.png
  • 增加低速下载时间
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999
  • httpBuffer设置
git config --global http.postBuffer 1048576000 
  • git clone 试一下,还不行?
  • 压缩配置
git config --global core.compression -1    
  • 然后,再git clone 试一下,成功了


    image.png

你可能感兴趣的:(git clone 过程中遇到 'the remote end hung up unexpectedly')