Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 git-scm 开发一个 git 存储库。
在选择要提交的未暂存文件时,我的笔记本电脑由于电池电量不足而突然关闭。重新启动后,即使更改仍在文件中,我所有未暂存的更改都消失了。
有什么解决办法吗?
您可能需要重建索引并从上次提交重新开始:
rm -rf .git/index git reset
这应该让您在工作树中进行更改并使用“空”索引。
我建议您在执行此操作之前进行备份。