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 status 时,我不小心删除了本地计算机和 git shell 中的文件,我看到这些文件标记为已删除,我该如何将这些文件恢复到本地计算机?
如果 Git 向您显示具有已删除状态的文件,则您尚未提交更改,您可以简单地git checkout <name of deleted file>.
git checkout <name of deleted file>
当您删除文件时,您的 IDE 可能会自动暂存您的更改。如果是这种情况,您首先必须将该文件重置为当前头,然后再签出已删除的文件。
git reset HEAD path/to/file git checkout path/to/file