차곡차곡

[Error] git push 에러 (fatal: The remote end hung up unexpectedly) 본문

Github

[Error] git push 에러 (fatal: The remote end hung up unexpectedly)

sohy 2022. 8. 20. 11:16

문제 상황

git push 하는 과정에서 해당 에러가 발생

 

문제 해결

1MB 보다 큰 파일이 있을 경우에 발생하는 에러라고 한다. 아래 코드 작성 후 다시 push하니 정상적으로 잘 올라갔다.

git config http.postBuffer 524288000

 

 

 

참고 자료 : https://stackoverflow.com/questions/15240815/git-fatal-the-remote-end-hung-up-unexpectedly, https://bongbongreview.tistory.com/94

Comments