DevOps.
fatal: the remote end hung up unexpectedly 오류 해결
by dev챙
2024. 9. 9.
👀 원인 파악
- push할 내용이 1MB를 넘을 경우 발생하는 에러
💡 해결 방법
- 용량을 늘여주면된다.
- 먼저 아래 http 명령어를 써보고 다시 push해볼시 안되면 ssh 명령어를 이용해주면 된다. 이때 바이트는 각자 업로드할 파일에 맞는 바이트로 계산하여 입력할 수 있다.
git config --local http.postBuffer 2048M
- 재푸시
- 그래도 안될 경우 ssh.postBuffer이용
git config --local ssh.postBuffer 2048M
- 만약 local이 아니라 글로벌로 설정하고 싶다면 아래와 같은 명령어를 사용할 수 있다
git config --global http.postBuffer 2048M
git config --global ssh.postBuffer 2048M
- 글로벌로 설정해둔 내용을
vi ~/.gitconfig
명령어로 .gitconfig에 접근하여 확인할 수 있다.
참고 사이트
https://github.com/orgs/community/discussions/39210