[깃/git]fatal: the remote end hung up unexpectedly Everything up-to-date

프로그래밍/서버2020. 3. 23. 00:48

$ git push -u origin master
Enumerating objects: 4854, done.
Counting objects: 100% (4854/4854), done.
Delta compression using up to 8 threads
Compressing objects: 100% (4699/4699), done.
error: unable to rewind rpc post data - try increasing http.postBuffer
error: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054
fatal: the remote end hung up unexpectedlyiB | 3.00 KiB/s
Writing objects: 100% (4854/4854), 60.52 MiB | 10.00 KiB/s, done.
Total 4854 (delta 1215), reused 0 (delta 0)
fatal: the remote end hung up unexpectedly
Everything up-to-date

 

git push를 했으나 업로드 속도가 엄청 느리게 진행되다가 결국 위와 같은 에러가 발생했습니다..

인터넷에서 찾은 정보는

git config http.postBuffer 524288000를 하고 다시 업로드를 하라는 것이었습니다.

 

위의 명령어를 사용하면 업로드가 좀 빨리 되는가 싶더니.. 반응이 없고 cpu 점유율만 올라가네요.

 

또 다른 해결책은 

git config http.postBuffer 524288000를 하기 전에

git init을 먼저 하라고 해서..

그렇게 해도.. 비슷했습니다.

 

그래서 그냥.. git push하고 5분? 10분? 기다려봤더니

서버에 잘 올라갔네요;;

 

 

작성자

Posted by 드리머즈

관련 글

댓글 영역