Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git Push Fails with RPC failed; curl 55 SSL_write() returned SYSCALL, errno = 10053

Tags:

Full list of info

Counting objects: 1945, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (1935/1935), done.
rror: RPC failed; curl 55 SSL_write() returned SYSCALL, errno = 10053
atal: The remote end hung up unexpectedly
Writing objects: 100% (1945/1945), 3.15 GiB | 1.21 MiB/s, done.
Total 1945 (delta 231), reused 0 (delta 0)
fatal: The remote end hung up unexpectedly
Everything up-to-date

As far as I can tell, there is no file larger than 150MB, using the latest Git version. I've been able to push with no issue up until I added lots of new assets to my project (around 3GB worth) and now I get this.

What I have tried is increasing the postBuffer for both http and https to 2097152000

I should also note that I did originally have a large zip file that was not ignored (400MB) but I deleted it and made a new commit, however, this may not have been the proper way to have gotten rid of this, as I guess it will still try to push it out since the commit before the latest had it?

like image 917
Nonlin Avatar asked Oct 17 '17 12:10

Nonlin


1 Answers

According to github's help page max size per file is 100MB, and up to 1GB total for your repo.

Are you using LFS?

like image 196
Julio Daniel Reyes Avatar answered Oct 16 '22 12:10

Julio Daniel Reyes