关于git:如何恢复提交删除的文件?


How to restore a file deleted by a commit?

本问题已经有最佳答案,请猛点这里访问。

我想恢复一个我在提交中删除的文件。我试过

git checkout path/to/deleted/file

但得到

error: pathspec 'path/to/deleted/file' did not match any file(s) known
to git.

如何还原最近提交时删除的文件?


还要指定文件仍然存在的最后一次提交。

1
git checkout <commit> path/to/deleted/file