I am trying to commit a folder in my repo with 3342
files of 8.0 MB
each.
git commit -m 'add my folder'
git push -u origin master
Counting objects: 3342, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (3342/3342), done.
error: RPC failed; curl 55 SSL_write() returned SYSCALL, errno = 32
fatal: The remote end hung up unexpectedly
Writing objects: 100% (3342/3342), 3.77 GiB | 2.48 MiB/s, done.
Total 3342 (delta 2241), reused 0 (delta 0)
fatal: The remote end hung up unexpectedly
But it returns
fatal: The remote end hung up unexpectedly
If I try the solution proposed here to swhitch to ssh
git remote add origin git@github.com:username/project.git
I get:
fatal: remote origin already exists.