Git 索引会自行重置

发布于 2024-09-04 02:23:56 字数 343 浏览 6 评论 0原文

每隔一段时间,当我运行 git add . 将新文件添加到我的存储库时,我的 git 索引将重置并认为存储库中的所有文件都已被删除。我运行这些命令:

git status
git add .
git status
git commit -a -m "Commit message"

在所有这些点上一切看起来都很好,直到我提交,它说每个文件都被删除,我所要做的就是运行 git add . 并再次提交以恢复文件,但是这成为一种痛苦。而且这种情况并不是每次都会发生,大概有 40% 左右的时间都会发生。有谁知道为什么会发生这种情况?

我使用的是 Mac OS 10.6.3,Git 1.6.6

Every so often when I run git add . to add new files to my repo my git index will reset and think all the files in the repo have been deleted. I run these commands:

git status
git add .
git status
git commit -a -m "Commit message"

everything looks fine at all those points until I commit and it says every file was deleted, all I have to do it run git add . and commit again to get the files back, but this becomes a pain. And this doesnt happen every time, maybe about 40% of the time. Anyone know why this might happen?

I am on Mac OS 10.6.3 with Git 1.6.6

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

诺曦 2024-09-11 02:23:56

git 添加 . -A

这会将所有新文件、更改的文件和删除的文件添加到索引中。

您是否正在运行任何实用程序,例如 Dropbox、防病毒软件或任何其他可以短时间锁定文件或文件夹的软件?

你的提交历史是什么样的?补丁视图是否显示所有内容都已删除?

当您说 repo 时,您是在谈论工作文件夹还是 .git 文件夹的实际内容?

git add . -A

That will add to the index all of your new files, changed files and removed files.

Do you have any utilities running such as dropbox, or anti-virus, or any other software that can lock files or folders for a short time?

What does your commit history look like? Does the patch view show deletions of everything?

When you say repo, are you talking about the working folder or the actual contents of the .git folder?

玩套路吗 2024-09-11 02:23:56

我的第一直觉是你发现了某种种族错误。如果您执行以下操作,会发生这种情况吗?

git add *

My first instinct is that you've found a race bug of some kind. Does this happen if you do the following?

git add *
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文