git clone 报错:
原因:代码量较大
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
通过查阅资料,搜索到一个处理办法,如下:(没有解决掉我的问题,可跳过)
git clone http://github.com/*** --depth 1 // 并不全,所以还要执行下面的
cd ***
git fetch --unshallow //还是太大 , 会报错,继续
git fetch --depth=100
git fetch --depth=200
***//不知道要执行到什么时候 ,索性放弃了
最终解决办法:
用github中的SSH去克隆代码
git clone git@github.com***
注意:需要先配置一下SSH信息,下面这个分享很详细:保姆级教学,教你用配置SSH拉取github代码
参考信息:
error: RPC failed; curl transfer closed with outstanding read data remaining
保姆级教学,教你用配置SSH拉取github代码