git 超过100M文件的解决方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 超过100M文件的解决方法相关的知识,希望对你有一定的参考价值。
参考技术A 对于部分非二进制的文件这样的可以解决单个文件过大的问题设置上限为 500M
如果方法一不行,git push依旧说文件过大,
删除已经提交但是还没有push成功的文件,修改文件大小后重新提交
简单操作,3条命令就可以了
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 超过100M文件的解决方法的主要内容,如果未能解决你的问题,请参考以下文章