'git status'失败,代码为128:致命:无法读取

时间:2019-06-07 06:09:03

标签: ios xcode git macos bitbucket

我想将Bitbucket用于我的iOS项目,但是在创建存储库后出现错误。请找到以下错误:

'git status' failed with code 128: fatal: unable to read

我该如何解决?

1 个答案:

答案 0 :(得分:2)

git status是本地操作,因此不会受到存储库托管在Bitbucket上的影响。

尝试(在XCode之外)检查git status是否仍然存在:只需检查与这些文件相关的权限,它们是否由计算机上的正确用户/组拥有?
还尝试再次克隆您的Bitbucket存储库(到新的空本地文件夹),看看是否可以读取(git status)并将其导入XCode。

如果消息为“ unable to read <sha1>”,则存储库可能已损坏,详细信息如下:

使用git fsck --full进行检查。