본문 바로가기
개발자의 정보/개발관련 상식

[git - error] RPC failed; curl 92 HTTP/2 stream 0 was not closed cleanly: CANCEL (err 8)

by pastory 2021. 9. 13.

하... 이런 답답한 오류 메시지

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

검색해보니 아래의 명령으로 http 버전을 변경하란다. 

git config --global http.version HTTP/1.1

변경했다. 그리고 다시 push 했으나.. 다른 오류가 나타난다.

error: RPC failed; curl 55 SSL_write() returned SYSCALL, errno = 32
fatal: the remote end hung up unexpectedly

이런 제길... 다른 방법

git config --global http.postBuffer 524288000

이번엔 이 명령으로 버퍼 늘리기. 그러고 나니 이제 알게 된 사실

파일 용량이 너무 커서 그렇단다. 먼 뻘짓을 한건지..

결국 아래 처럼 커밋 파일 삭제로 해결

$ git rm --cached <file_name>
rm '<file_name>'
$ git status
On branch master
Changes to be committed:
  (use "git reset HEAD <file>..." to unstage)

        deleted:    <file_name>

$ git commit -m 'Delete file!'

...

$ echo '<file_name>' >> .gitignore

댓글