개발
RPC failed; curl 18 transfer closed with outstanding read data remaining 문제해결 방법
개발공주
2021. 12. 16. 10:59
728x90
문제상황
git clone을 받으려고 하는데 "RPC failed; curl 18 transfer closed with outstanding read data remaining" 라는 문구가 뜨면서 클론이 안 되고 있다.
원인
규모가 큰 레포지토리를 클론하려고 하는데 로컬에서 네트워크 상황이 좋지 않은 경우, 원격 연결이 끊어지고 클론이 취소가 된다.
해결 방법
먼저 얕은 클론을 한 후(--depth 1) -> 점진적으로 레포를 가져온다(fetch --unshallow)
$ git clone http://github.com/myrepo --depth 1
$ cd myrepo
$ git fetch --unshallow
결과
잘 받아와짐
728x90