오류
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
bitbucket에서 clone 받으려고하는데 안됨
원인
코드의 양이 너무 많음, static file들이 많은 프로젝트였음
네트워크가 느려도 발생할 수 있다고함.
해결
cd [저장소폴더명]
git clone [저장소url] --depth 1
git fetch --unshallow // 분할해서 가져오는 명령어
git fetch --unshallow가 안되는 경우,
git fetch --depth 10
git fetch --depth 50
git fetch --depth 100
이런식으로 depth를 늘려가면서 패치를 받는다. (아래 이미지와 같이 받을 것이 없을 떄까지 depth를 늘린다)
+
이후 리모트에 있는 브랜치가 1개 밖에 안보이는 문제가 발생
동일한 git 주소를 이름을 바꾸어서 등록하여 다시 패치
반응형