Git fetch github:Index-pack失败了

时间:2011-08-09 14:39:18

标签: windows git bash github fetch

运行命令 git fetch github 时,出现以下错误:

致命:写错误:管道损坏93),23.23 MiB | 635 KiB / s
致命:index-pack失败。

当Windows尝试找到问题的解决方案时,我得到“git.exe已停止工作”错误消息。

运行 * GIT_TRACE = 1 git fetch github * 不会提供任何其他详细信息。

注意:我可以直接执行 git fetch github [分支名称] ,无误地运行

当我在Git Gui中尝试“Repository> Compress Database”时,我得到“Error:Command Failed”。当我尝试“存储库>验证数据库”时,我得到了同样的错误。

我如何解决这个问题?这几乎就像我当地的回购公司腐败一样。

系统信息

  • * Git Bash:1.7.4-preview20110204
  • Windows 7 64位*

1 个答案:

答案 0 :(得分:1)

几个选项:

  • 检查本地存储库中是否存在问题(因此,重新克隆GitHub存储库后)
  • 检查提高postBuffer大小是否可以缓解问题

    git config --global http.postBuffer 524288000

(如“The remote end hung up unexpectedly while git cloning”中所述)