I'm pretty new to GitHub. When I try to push my local project to a git repository, it fails all the time.
So I've created a new repository on git without having a readme.md https://github.com/winswang/comp_holo_video
I navigate to the local git folder I want to upload code. I configure the buffer to be very large. (I also deleted some data from my original folder)
git config --global http.postBuffer 157286400
then I used
git remote set-url origin https://github.com/winswang/comp_holo_video.git
(I also tried add, the results are the same), and then
git push -u origin master
Then error occurs:
Counting objects: 86, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (84/84), done.
error: RPC failed; curl 55 SSL_write() returned SYSCALL, errno = 32
fatal: The remote end hung up unexpectedly
Writing objects: 100% (86/86), 4.23 GiB | 17.85 MiB/s, done.
Total 86 (delta 26), reused 1 (delta 0)
fatal: The remote end hung up unexpectedly
Everything up-to-date
Can someone help me?