해결방법 - fatal: early EOF, fatal: The remote end hung up unexpectedly, fatal: index-pack failed, error: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054

CODEDRAGON Development/Git, PM

반응형


 

 

에러 메시지

fatal: early EOF

fatal: The remote end hung up unexpectedly

fatal: index-pack failed

error: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054

 

 

git did not exit cleanly (exit code 128) (575094 ms @ 20xx-xx-xx 오전 8:14:44)

 


 

 

 

 

오류원인

기본적으로 업로드 다운로드 있는 사이즈가 있으며 이보다 파일을 push또는 pull 경우 발생합니다.

 

 

 

 

해결방법 1

git 설정에서 사이즈를 증가시킵니다.

git config http.postBuffer 524288000

or

git config --global http.postBuffer 1048576000

codedragon@CODEMASTER MINGW64 /c/CodeLab/workspace_arduino (master)

$ git config http.postBuffer 524288000

 

codedragon@CODEMASTER MINGW64 /c/CodeLab/workspace_arduino (master)

$

codedragon@CODEMASTER MINGW64 /c/CodeLab/workspace_arduino (master)

$ git config --global http.postBuffer 1048576000

codedragon@CODEMASTER MINGW64 /c/CodeLab/workspace_arduino (master)

$

 

 

 

해결방법 2

해결방법 1 수행한 후에도 계속 에러가 발생한다면 네트워크 환경(네트워크 속도) 좋은 곳에서 다시 시도하면 해결이 됩니다.


 

반응형