반응형 git the remote end hung up unexpectedly1 git fatal: the remote end hung up unexpectedly 오류 조치 git 사용 중에 commit 내역을 push 하려고 할때 다음과 같은 에러가 발생했다. send-pack: unexpected disconnect while reading sideband packet fatal: the remote end hung up unexpectedly 위 오류는 git에서 기본적으로 한개 파일의 최대 용량이 1MB로 설정되어 있고, 그것을 초과한 파일을 push 할 때 발생하는 오류였다. 해결하기 위한 방법은 아래와 같이 진행하라고 한다. git config --local http.postBuffer 2048M 하지만 필자는 동일한 오류가 계속 발생했다. 그래서 아래 설정을 추가해봤다. git config --local ssh.postBuffer 2048M 이제 정상적으로 pu.. 2023. 7. 30. 이전 1 다음 반응형