반응형
Git failed with a fatal error. the remote end hung up unexpectedly Everything up-to-date: The remote end hung up unexpectedly
여러 경우의 수가 있지만 필자의 경우 작업시간이 오래 걸려 연결이 타임아웃되어서 발생하는 현상이었다. 다음과 같이 해결했다.
로컬 리포지토리 경로에서 아래를 입력
http를 사용하는 경우
git config http.postBuffer 524288000
ssh를 사용하는 경우
git config ssh.postBuffer 524288000
이 외에도
Git LFS, 인증문제 등의 문제때문일 수도 있다.
반응형
참고
https://stackoverflow.com/questions/15240815/git-fatal-the-remote-end-hung-up-unexpectedly
반응형
'Git, GitHub' 카테고리의 다른 글
원격 리포지토리에 푸시하지 못했습니다. 자세한 내용을 출력창을 참조하세요 (3) | 2024.03.18 |
---|---|
테이징, 스태시 차이점 (Staging and Stash Differences) (1) | 2024.03.05 |
Git failed with a fatal error.Git failed with a fatal error.Out of memory, malloc failed (tried to allocate 67108883 bytes) (0) | 2023.05.05 |
VS Code Git NAS Settings (0) | 2023.03.20 |
깃허브 액션 에러: The requested URL returned error: 403 (0) | 2023.01.16 |