postBuffer

    [git] fatal: The remote end hung up unexpectedly

    git을 사용하다보면 가끔 아래와 같은 에러를 만날 수 있습니다. fatal: The remote end hung up unexpectedly 이런 경우는 git의 post buffer 사이즈 문제입니다. 아래와 같이 버퍼 사이즈를 늘려줌으로써 해결할 수 있습니다. git config --global http.postBuffer 1048576000 위 와 같은 방법으로도 해결이 안된다면, 아래 방법도 시도해보세요. ~/.gitconfig 파일에 아래 설정 입력하기. [core] packedGitLimit = 512m packedGitWindowSize = 512m [pack] deltaCacheSize = 2047m packSizeLimit = 2047m windowMemory = 2047m 감사합니다.