git提交大文件的解决方法
Posted 程序熊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git提交大文件的解决方法相关的知识,希望对你有一定的参考价值。
不知是 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
以上是关于git提交大文件的解决方法的主要内容,如果未能解决你的问题,请参考以下文章