问题
在git push时,发生了如下错误:
git 提交代码报错 :error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413
原因分析
一般两种:
-
本地git缓存设置太小。
这个的解决方法是:设置缓存大小
git config --global http.postBuffer 1048576000
-
私有git服务器前面有nginx类型反向代理工具缓存设置太小
解决方法是:找到代理服务器的配置文件,增加缓存大小配置,以nginx为例:
bash
location / {
client_max_body_size 500M;
proxy_pass http://172.16.0.112:3000;
}