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.
我在 2 天前承诺。然后,我对一些文件进行了更改。
但是,在一个特定目录中,我最近没有对其进行任何更改。
今天,我在该目录中使用 rm * 删除了这些文件。
如何使用 git 将文件恢复到该目录?
只需使用这个:
cd <specific_dir> git checkout .
它将恢复当前目录中由 git 跟踪的所有文件和目录。
请注意,这将覆盖对当前目录中其他文件的未提交更改。