git push 报错"fatal: The remote end hung up unexpectedly"

git push 时老是报出此错误,分析一下:

问题原因:由于提交文件内容过大,导致git报错。

解决方案:修改http请求最大容量  

$ git config http.postBuffer 524288000

 

猜你喜欢

转载自sunxboy.iteye.com/blog/2173280