运行命令 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”。当我尝试“存储库>验证数据库”时,我得到了同样的错误。
我如何解决这个问题?这几乎就像我当地的回购公司腐败一样。
系统信息
答案 0 :(得分:1)
几个选项:
检查提高postBuffer大小是否可以缓解问题
git config --global http.postBuffer 524288000
(如“The remote end hung up unexpectedly while git cloning”中所述)