본문 바로가기

Tool/Git

[Git] fatal: the remote end hung up unexpectedly 에러

728x90
반응형
SMALL

 

git post buffer size 문제

git config --global http.postBuffer 1048576000
git config --global http.postBuffer 524288000

postBuffer 사이즈 늘려주기

 

  • 혹은 나눠서 넣기

.gitignore 파일 활용

캐시 삭제

git rm -r --cached .
git rm -r --cached . -f

 

 

  • 추가 error: RPC failed; HTTP 400 curl 22 The requested URL returned error: 400
git config --global http.version HTTP/1.1

 

 

728x90
반응형
LIST