配置git的最低速度和最低速度时间:
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999
文件太大的解决方法:
当clone或者push git项目时,文件太大也会出现fatal: The remote end hung up unexpectedly
此时需要修改.gitconfig配置文件,打开终端,执行指令:
git config http.postBuffer 524288000
将postBuffer的缓存设置为500M即可。