前言:
使用Git克隆项目/文件时先报错:
error: RPC failed; curl 56 GnuTLS recv error (-54): Error in the pull function.
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
注:按照本人另一片博客解决之后,重新克隆再次报错。
具体异常信息:
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
图示:
原因及解决方案:
这个错误是因为项目太久,tag资源文件太大
方案一: (网上大部分方案时候命令终端输入 )
git config --global http.postBuffer 524288000
用上面的命令有的人可以解决,但是我在前言的报错中已经将换成设置为2000000000仍然不行,则需要如下命令,改clone深度为1:
git clone /github_com/large-repository --depth 1
cd large-repository
git fetch --unshallow
# 第一个中下划线处填入你的git仓库的地址..(我用的是http方式,不是ssh)
**方案二:**一般clone http方式的容易产生此问题,改成SSH的方式也有效,即将https://
改为git://
(本文使用)
演示图:
遇到的问题:
(Mac可能问题)
warning: templates not found /usr/local/git/share/git-core/templates
在终端输入
open /usr/local/
在打开的目录中可以看到:
如果没有 git 目录
打开下面的地址,下载 git-osx 并安装,
http://git-scm.com/download/mac
如果有 git 目录
并且相应的 share,git-core,templates 目录都有,说明是权限的问题.
在终端输入:
sudo chmod -R 755 /usr/local/git/share/git-core/templates
注意 sudo 创建目录需要输入当前 Mac 用户的密码
最后重新 clone 项目
以上问题是我在Ubuntu18.04 安装git之后,终端三个方式clone某个项目都不能成功克隆下来。