问题:git推送到远程仓库时发生
23-05-29 23:05:26.294 [info] error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413
send-pack: unexpected disconnect while reading sideband packet
fatal: the remote end hung up unexpectedly
Everything up-to-date
〔信息〕错误:RPC失败;HTTP 413 curl 22请求的URL返回错误:413
发送包:读取边带数据包时意外断开连接
致命:远端意外挂断
解决方案:
可能是 push 的数据太大,因此先增加 http.postBuffer 试试。
git config http.postBuffer 524288000 # 增加到524M
也有可能是可能是 nginx默认的 client_max_body_size 太小。在/etc/nginx/nginx.conf配置文件中增加
client_max_body_size 1024m; # 只要增加这句就可以了
server
{
listen 8881;
listen [::]:8881;
....
然后
systemctl daemon-reload # 重载配置
sudo systemctl restart nginx # 重启
sudo systemctl status nginx # 状态
应该就可以了。
发表评论 取消回复