fatal: the remote end hung up unexpectedly

来源:互联网 发布:linux驱动移植 编辑:程序博客网 时间:2024/04/25 20:25

转自http://blog.sina.com.cn/s/blog_71d4414d0100wfwq.html


发生在push命令中,有可能是push的文件过大导致

解决方法:
windows:
在 .git/config 文件中加入
[http]
postBuffer = 524288000

linux:
git config http.postBuffer 524288000
0 0