I have a project that contains some large folders
that I ignore through .gitignore
, but when I git add and commit
I find that the ratio is smaller but not as expected, the following error occurs in the final stage of git push
Total 8494 (delta 285), reused 8494 (delta 285)
error: RPC failed; HTTP 502 curl 22 The requested URL returned error: 502 Bad Gateway
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date
The project size is as follows
# du -h --max-depth=1 .
...
...
4.2G ./.git
...
...
16G ./project
20G .
My project uses Gitllab for repository.
I would appreciate it if you could tell me how to solve it.