Cloning into'boost'...remote:Counting objects:183543,done.remote:Compressing objects:100%(69361/69361),done.fatal:The remote end hung up unexpectedlyfatal:earlyEOFfatal:index-pack failed 后来google 到的参考如下: git clone fails with \”index-pack\” failed? Git checking out problem [fatal: earl...
git clone --depth1url 然后修改config的remote "origin"下的fetch 修改前 fetch = +refs/heads/develop:refs/remotes/origin/develop 修改后 fetch = +refs/heads/*:refs/remotes/origin/* 执行pull git pull --all 然后获取完整库 git fetch --unshallow 最后切换想要的分支...
Git early EOF index-pack failed 问题 在git clone时经常会遇到 early EOF这种错误。 fatal: The remote end hung up unexpectedly fatal: early EOF fatal: index-pack failed 一般出现这种错误的原因是目标仓库太大了。 #为 git 添加配置项,通过下面的命令可以简单完成 # 在这之前可以执行 git config -l ...
还是出现了下面的错误,然后就不得不 google 去了。 $ git clone https:///boostorg/boost.gitCloning into'boost'...remote:Counting objects:183543,done.remote:Compressing objects:100%(69361/69361),done.fatal:The remote end hung up unexpectedlyfatal:earlyEOFfatal:index-pack failed 1. 2. 3. 4. 5...
修改GIT 的本地 config 文件,在 core 中加入: compression = -1 这里是在clone方处理 windows git目录在c:\Program Files (x86)\Git\etc\gitconfig中 其他辅助方法参考http://git.661346.n2.nabble.com/Large-pack-causes-git-clone-failures-what-to-do-td5481488.html ...
执行git pull命令报告"fatal: early EOF fatal: index-pack failed error: Could not fetch origin fatal: read error: Connection timed out"如何处理? 答: 改变仓库的地址(<source code dir>/.git/config中的[remote "origin"]),如: .git/config中的[remote "origin"]如下:...
Cloning into'OS'...fetch-pack:unexpected disconnectwhilereading sideband packetfatal:earlyEOFfatal:fetch-pack:invalid index-pack output 原因:git 版本 2.33.0 是目前最新的,它修改了 sideband 的处理方式,导致 Gitee服务器处理git clone的 ssh 连接时有问题,Gitee 的技术人员正在努力排查中(相信不久就会解决)...
fatal: early EOF fatal: fetch-pack: invalid index-pack output 看到这个提示第一时间就想到 Git 2.33.0 的更新日志里面好像是有关于 Fetch 和Sideband相关的更新,于是前往更新日志发现了如下的两个信息: * "git fetch" over protocol v2 left its side of the socket open after ...
Commands that make use of this include git-archive[1], git-fast-import[1], git-index-pack[1], git-unpack-objects[1] and git-fsck[1]. core.excludesFile Specifies the pathname to the file that contains patterns to describe paths that are not meant to be tracked, in addition to .git...
pack hardens objects added to the repo in packfile form. pack-metadata hardens packfile bitmaps and indexes. commit-graph hardens the commit graph file. index hardens the index when it is modified. objects is an aggregate option that is equivalent to loose-object,pack. reference hardens referenc...