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/1524..