git显示error: RPC failed; curl 18
2019-08-15 本文已影响0人
crush_d872
今天拉项目出现了这么个错误,异常绝望:
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
看到这么一长串,心里异常绝望,网上解决办法大多是调整config中的大小
我的解决方法是:
从终端拉取代码,打开git.exe
输入
git clone 你的项目地址 --depth 1
后面depth为1这个含义是:仅仅只克隆最近一次的提交
这样项目就可以完整的拉取下来了