git push报错:error: RPC failed; result=22, HTTP code = 413
Posted Badwood-涂鸦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git push报错:error: RPC failed; result=22, HTTP code = 413相关的知识,希望对你有一定的参考价值。
新项目推送到服务器时报错:
error: RPC failed; result=22, HTTP code = 413| 7.66 MiB/s
fatal: The remote end hung up unexpectedly
查了下,属于项目中有大文件,而http推送限制造成的,需要修改服务器配置。因为git服务器是通过nginx做反向代理之后实现的,因此需要修改nginx和appache(git服务器):
1、nginx服务器配置:/etc/nginx/conf.d/default.conf中的server小节加入:client_max_body_size 100m;
2、apache配置:/etc/httpd/conf.d/git.conf中对应Location小节中加入:LimitRequestBody 52428800
以上是关于git push报错:error: RPC failed; result=22, HTTP code = 413的主要内容,如果未能解决你的问题,请参考以下文章
git push报错error: failed to push some refs to 'git@github.com:
Git 报错:git - error: RPC failed; curl 18 transfer closed with outstanding read data remaining 解决方案(示
Git push 报错 "error: failed to push some refs to " 解决
聊聊git push到远程服务器出现RPC failed问题
git 常见冲突解决——git push遇到报错error: failed to push some refs to ‘git@git.xxx.com:xxx/xxx.git