美文网首页
git clone 项目失败

git clone 项目失败

作者: emm_simon | 来源:发表于2020-02-10 11:36 被阅读0次

[参考link]
[参考link]
[参考link]
[参考link]
[参考link]
[参考link]

大概率是当前网络的使用的国内的DNS服务器定位的github域名的IP地址被污染了,导致网络连接丢包or超时,然后git clone 失败。需要手动设置一下域名指定ip。修改git config只是杯水车薪,最主要还是改ip或者f_an_q_1_ang。

执行git config -lorvim ~/.gitconfig可以查看当前的git配置。

使用git clone https://github.com/xxx/xxx.git时,clone项目失败,常见报错如下:

-1- index-pack failed

如下图所示:


git clone报错

报错:

error: RPC failed; 
curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, 
errno 54
The remote end hung up unexpectedly
early EOF
index-pack failed

出现此报错可能的原因是:上传大小限制,需要修改git http的传输限制。
设置git http的传输限制:

git config --global http.postBuffer 524288000

-2- unpack failed

[stackoverflow上的同样的问题 link]
[csdn上的同样的问题 link]

猜测:应该是网络的问题


image.png
image.png

如下图所示:


git clone报错 : unpack object failed

报错:

error: RPC failed; 
curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, 
errno 54
The remote end hung up unexpectedly
early EOF
unpack-objects failed

相关文章

  • git clone remote: HTTP Basic: Ac

    git clone 项目失败,报下面的错误信息:$ git clone http://192.168.0.141...

  • git clone 大文件

    1 2 3 LFS 4 depth 使用Git clone代码失败的解决方法 Git_Clone大项目超过1G失败...

  • git clone 项目失败

    [参考link][参考link][参考link][参考link][参考link][参考link] 大概率是当前网络...

  • git clone项目失败

    有段时间没用github了今天想把一个demo传上去,结果在github官网上创建了一个空仓库之后,想通过终端gi...

  • git clone fatal: The remote end

    git clone error随着项目的更新.git越来越大,最近在一台新的mac上clone项目时一直失败,出现...

  • Mac git 克隆失败

    git clone error随着项目的更新.git越来越大,最近在一台新的mac上clone项目时一直失败,出现...

  • 无标题文章

    git clone项目,响应时间太长导致clone失败,可以配置git的代码响应时间 还有一个提议是后缀加上 --...

  • 关于Git命令

    1:克隆项目git clone XXXX(项目地址)例子: git clone git://git.kernel....

  • SourceTree报错: templates not foun

    今天clone Git上面的项目的时候 sourcetree 报错,克隆失败,错误如下 templates not...

  • git 常用命令

    1、clone项目 git clone 仓库地址 直接clone指定分支git clone -b 分支名 仓库地址...

网友评论

      本文标题:git clone 项目失败

      本文链接:https://www.haomeiwen.com/subject/rthaxhtx.html