git push一直停留在writing objects,速度慢
2019-06-04 本文已影响2人
李佳明先生
解决方案如下:
一、
git config --global http.postBuffer 5242880000
作用:因为http.postBuffer默认上限为1M,上面的命令是把git的配置里http.postBuffer的变量改大为500M , 文件大,上传慢
二、
git config --global http.lowSpeedLimit 0
git config --global http.lowSpeedTime 999999
使用git更新或提交中途有时出现The remote end hung up unexpectedly的异常,特别是资源库在国外的情况下。此问题可能由网络原因引起。配置git的最低速度和最低速度时间:
三、
git config --global pack.windowMemory 1024m
fatal: Out of memory, malloc failed问题的解决