본문 바로가기

프로그래밍

Git send-pack: unexpected disconnect while reading sideband packet

반응형

send-pack: unexpected disconnect while reading sideband packet

fatal: the remote end hung up unexpectedly

 

git push 시에 위 오류가 발생하며 push가 되지 않았다.

검색해보니 git push 기본값은 1MB여서 발생한다고 한다.

 

아래 커맨드를 실행하여 수정후 정상적으로 push 를 수행할 수 있었다.

 

git config --global http.postBuffer 2048M
git config --global ssh.postBuffer 2048M
반응형

'프로그래밍' 카테고리의 다른 글

docker 이미지 전체 삭제하기  (0) 2020.07.03