Git 全局配置之【http.postBuffer】
2020-03-26 本文已影响0人
Ci_ci
image.png
错误
RPC failed; HTTP 411 curl 22 The requested URL returned error: 411 Length Required
fatal: The remote end hung up unexpectedly
原因
提交的文件太大(默认是1M
),导致push
失败
解决方案
把提交文件大小的上限设置大点就可以了
git config http.postBuffer 524288000
//或全局设置
git config --global http.postBuffer 2M.