본문 바로가기
ETC/GitHub

GitHub Desktop Push Error

by Dev_카페인 2023. 11. 20.
반응형

[GitHub] GitHub Desktop Push Error

 

 The remote disconnected. Check your Internet connection and try again 

 

GitHub Desktop을 사용하던 도중 대용량 파일을 업로드하는데에 오류를 직면했다.

Unreal Engine 5를 이용한 프로젝트를 진행중에 있었고 업로드하려는 파일은 18GB에 달했다.

찾아본바로는 대용량 저장소(14GB 이상)를 Push하려 할 때 오류가난다고 한다. 

 

비슷한 에러
error: unable to rewind rpc post data - try increasing http.postBuffer
error: RPC failed; curl 65 seek callback returned error 1


RPC failed; HTTP 500 curl 22 The requested URL returned error: 500
send-pack: unexpected disconnect while reading sideband packet

 

여러 사람들은 포스트 버퍼에 문제가 있다며 수정을 권고했다.

git config --global http.postBuffer 157286400(버퍼 크기)

필자는 524288000으로 설정했다.

대부분 해결방법은 다음과 같다.

1. 컴퓨터를 재시작

2. 포스트 버퍼 수정

3. repo URL을 ssh로 전환

4. 방화벽 설정 해제 X

 

 

반응형