在使用git更新或提交项目时候出现 "fatal: The remote end hung up unexpectedly " 原因是推送的文件太大。
方法一:
修改提交缓存大小为500M,或者更大的数字
git config --global http.postBuffer 524288000
some comments below report having to double the value:
git config --global http.postBuffer 1048576000
或者在克隆/创建版本库生成的 .git目录下面修改生成的config文件增加如下:
[http]
postBuffer = 524288000
修改如下:
然后重新推送。
方法二:
配置git的最低速度和最低速度时间:
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999 单位 秒
--global配置对当前用户生效,如果需要对所有用户生效,则用--system
————————————————
版权声明:本文为CSDN博主「Arviiin」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_38450840/article/details/80701173