Programing

Git : 오류 : RPC가 실패했습니다.

lottogame 2020. 11. 14. 09:44
반응형

Git : 오류 : RPC가 실패했습니다. 결과 = 22, HTTP 코드 = 411


조짐:

Git이 갑자기 저장소를 푸시하는 것을 거부했습니다 (제 경우에는 github로).

$ git push
Counting objects: 9292, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (2136/2136), done.
error: RPC failed; result=22, HTTP code = 411
fatal: The remote end hung up unexpectedly
Writing objects: 100% (8222/8222), 1.27 MiB | 837 KiB/s, done.
Total 8222 (delta 6060), reused 8181 (delta 6033)
fatal: The remote end hung up unexpectedly
Everything up-to-date

도움이 된 것은 다음과 같습니다. 다음 명령은 git 버퍼를 500mb로 늘립니다.

git config http.postBuffer 524288000

참고 URL : https://stackoverflow.com/questions/16557071/git-error-rpc-failed-result-22-http-code-411

반응형