异常提示
remote: Enumerating objects: 2052, done.
efrror: RPC failed; curl 18 transfer closed with outstanding read data remaining
atal: The remote end hung up unexpectedly
fatal: protocol error: bad pack header
原因及解决方法
发生这个问题一般是项目中某些资源太大导致,可以尝试ssh方式clone ,或者解决方式如下
首次clone的层数定位在第一层
git clone 仓库地址 --depth 1
然后cd到项目目录中
cd 项目目录
在此下拉内部文件,--unshallow 即不使用浅克隆【会假死,使劲等就行】
git fetch --unshallow
COMMENTS | 1 条评论
Himeko 博主
挂代理就好了
git config –global http.proxy ‘127.0.0.1:1080’
git config –global https.proxy ‘127.0.0.1:1080’