2

几天后,我的 GitHub 存储库之一似乎已损坏。
尝试使用以下命令行克隆存储库时:

git clone git@github.com:MyAccount/MyRepository.git

我得到以下输出:

Cloning into 'MyRepository'...
remote: fatal: failed to apply delta
remote: aborting due to possible repository corruption on the remote side.
fatal: early EOF
fatal: index-pack failed

此外,当我团队中的某些人仍然可以拉取存储库时,而有些人却无法收到此错误:

git pull
remote: fatal: failed to apply delta
remote: aborting due to possible repository corruption on the remote side.
fatal: protocol error: bad pack header

有谁知道可能发生了什么和/或如何解决这个问题?

4

1 回答 1

1

GitHub 当前面临 ssh 访问问题(请参阅GitHub 状态历史记录

我们目前正在调查我们的一对文件服务器上的 SSH 访问问题。少数存储库可能会受到影响。

所以首先检查克隆问题是否仍然存在于 https url:

git clone  https://github.com/MyAccount/MyRepository

如果问题仍然存在,那么您需要联系 GitHub 支持,向他们索要git fsck,就像在这个问题中一样。

于 2013-06-14T08:08:51.900 回答