Hello I have been receiving the following error when I am trying to push a commit to my branch in my Git Desktop. The error is as follows:
Enumerating objects: 14181, done.
Counting objects: 100% (14181/14181), done.
Delta compression using up to 64 threads
Compressing objects: 100% (8094/8094), done.
remote: fatal: pack exceeds maximum allowed size s
error: RPC failed; curl 55 Send failure: Connection was aborted
fatal: the remote end hung up unexpectedly
Writing objects: 100% (14180/14180), 4.55 GiB | 14.97 MiB/s, done.
Total 14180 (delta 8863), reused 11393 (delta 6076), pack-reused 0
fatal: the remote end hung up unexpectedly
Everything up-to-date
I have tried few solutions from online, such as increasing the buffer size from git bash:
git config http.postBuffer 524288000
and
git gc --aggressive
but none of them worked to resolve this issue. What could be the problem?