I am trying to push my project to git, I created a new repo but am unable to push my 2.2GB project into the repo. I tried to do it with the GUI which gave the following error:
then I tried to push it through CLI and got the following error
Administrator@HauntedPC MINGW64 /c/UnrealProjects/HauntedProject (master)
$ git push --all -u
Enumerating objects: 2561, done.
Counting objects: 100% (2561/2561), done.
Delta compression using up to 4 threads
Compressing objects: 100% (2516/2516), done.
error: RPC failed; HTTP 500 curl 22 The requested URL returned error: 500
send-pack: unexpected disconnect while reading sideband packet
Writing objects: 100% (2561/2561), 2.17 GiB | 1.44 MiB/s, done.
Total 2561 (delta 540), reused 0 (delta 0), pack-reused 0
fatal: the remote end hung up unexpectedly
Everything up-to-date
I tried:
- Increasing timeout
git config http.lowSpeedLimit 0
git config http.lowSpeedTime 999999
- Increasing git buffer size
git config http.postBuffer 524288000
Nothing worked and errors remain the same.