Hyeyeon blog

[Git] Git Push 오류 해결 방법 (the remote end hung up unexpectedly) 본문

개발/etc

[Git] Git Push 오류 해결 방법 (the remote end hung up unexpectedly)

Hyeyeon.P 2020. 11. 27. 18:16
반응형

 

Git push 시 git post buffer 사이즈가 적을 경우에 발생한다.

error: RPC failed; HTTP 503 curl 22 The requested URL returned error: 503
fatal: the remote end hung up unexpectedly

 

post buffer 사이즈를 늘려주어 해결할 수 있다.

 // 원하는 버퍼 크기를 입력 
git config --global http.postBuffer 20971520
git config --global http.maxRequestBuffer 100M

 

728x90
Comments