gitclone报错fatal:protocolerror:badpackheader
目录
- 更多分享:www.catbro.cn
异常提示
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