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.
我正在为 Windows 使用 Git 客户端。
我最近提取了一个存储库并进行了一些修改并删除了一些文件(不是移位删除)。
当我撤消删除时,我在文件上看到附加的十字标记/这是什么意思?
如果出现问题,我该如何恢复到原来的状态。
看起来你已经删除了文件。
为了恢复(因为我不知道您使用的是哪个客户端),它打开 git bash 并按照以下步骤操作:
我假设您使用的是乌龟 git:
# Open git bash in the desired folder git status # now you should see your desired file in the list marked as deleted git checkout <file name>
这是给你的截图