我想恢复一个我在提交中删除的文件。我试过
git checkout path/to/deleted/file
但得到
error: pathspec 'path/to/deleted/file' did not match any file(s) known
to git.
如何还原最近提交时删除的文件?
- stackoverflow.com/questions/953481/…
- 我对Git不是很在行,但在我看来,你需要有一个以前的承诺,而不是最新的。
还要指定文件仍然存在的最后一次提交。
1
| git checkout <commit> path/to/deleted/file |