当我尝试推送文件时,我遇到了GIT问题,这就是:
$ git push -u origin dev
Counting objects: 586, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (506/506), done.
Writing objects: 100% (586/586), 36.81 MiB | 1.58 MiB/s, done.
Total 586 (delta 267), reused 40 (delta 29)
error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413 Request Entity Too Large
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date
我已经完成了:
git config http.postBuffer 524288000
,
所以这并不能解决我的问题!
我发现解决方案是修改nginx配置但不使用nginx ..我正在使用Windows 10,我没有看到我应该在哪里增加client_max_body_size
的值!!
你对Windows上的这个问题有任何想法吗?
答案 0 :(得分:1)
您收到此错误是因为GitLab一侧的尺寸限制太低。
使用管理员帐户登录到GitLab,并在“设置” /“常规” /“帐户和限制”下更改以下值:
并保存更改。它将解决此问题。