标签:
不知是 GitHub 在国内又被封了还是因为本文的原因,我个人是在执行了下述操作后成功提交了。
以作记录,内容如下:
Compressing objects: 100% (163/163), done.
error: RPC failed; result=52, HTTP code = 0
fatal: The remote end hung up unexpectedly
Writing objects: 100% (365/365), 3.39 MiB | 0 bytes/s, done.
Total 365 (delta 245), reused 315 (delta 199)
fatal: The remote end hung up unexpectedly
Everything up-to-date
问题原因:由于提交文件内容过大,导致git报错。
解决方案:修改http请求最大容量 $ git config http.postBuffer 524288000
标签:
原文地址:http://www.cnblogs.com/perryxiong/p/5606525.html