【KAWAKO】git上传时遇到413 error
问题
当输入git push -u origin main
时报错413 error
。
Enumerating objects: 462, done.
Counting objects: 100% (462/462), done.
Delta compression using up to 8 threads
Compressing objects: 100% (229/229), done.
error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413
send-pack: unexpected disconnect while reading sideband packet
Writing objects: 100% (462/462), 343.95 MiB | 12.89 MiB/s, done.
Total 462 (delta 232), reused 412 (delta 226), pack-reused 0
fatal: the remote end hung up unexpectedly
Everything up-to-date
原因
上传的文件太大(好像是看的总大小)。
解决办法
在nginx配置文件中,添加client_max_body_size 1G;
,大小可以自己调节。
server {
...
client_max_body_size 1G;
...
}
Reference
版权声明:
本站所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自
KAWAKO!
喜欢就支持一下吧
打赏
微信
支付宝