본문 바로가기

프로그래밍 공부/Git & Terminal

[Git 오류해결] fatal : the remote end hung up unexpectedly 에러 해결방법

반응형

 

 

 

로컬 레퍼지토리에서 폴더 내용물 전체를 커밋하고자했는데 아래와 같은 에러가 떴다.

commit 까지는 되는데 원격 저장소에 push가 안되는 상황이었다.

(됐다고 뜨는게 git_hub에는 변경이 없는!)

 

error: RPC failed; curl 92 HTTP/2 stream 0 was not closed cleanly: CANCEL (err 8)
fatal: the remote end hung up unexpectedly

 

 

그래서 fatal : the remote end hung up unexpectedly 를 구글링해봤고, 

 

소스 파일 사이즈보다 postBuffer size가 작은 것이므로 아래 커맨드를 푸시하기 이전에 입력해줌으로 해결할 수 있다. 

(1024 * 1024 * 100(MB) = 104,857,600 이므로 postBuffer size를 100MB 로 늘려주는 코드)

 

git config http.postBuffer 104857600

 

 

하지만 위의 방법으로도 해결이 되지 않았다 ... 용량을 늘렸음에도 아래처럼 88%에서 자꾸막힌다 ... 다른방법을 찾아봐야겠다.

하지만 대부분 저 코드로 해결했다고 나오니 대부분 해결되시지 않을까 싶습니다!! 

 

 

 

참고링크  : www.jamescoyle.net/how-to/894-gitlab-error-fatal-the-remote-end-hung-up-unexpectedly

 

Gitlab error “fatal: The remote end hung up unexpectedly” | JamesCoyle.net Limited

Get Social!I have been using Gitlab for a while now to run a local Git server for storing code and documentation of the projects I work on. Gitlab is the open source version of Github which you can run on your own environments . After upgrading to version

www.jamescoyle.net

 

반응형