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.
我不小心从 Visual Studio 完成了一个 GIT Stage。有些文件我不想提交。因此,我想撤消我的阶段操作并恢复我的本地更改。
反向动作是
git reset -- path/to/file
它将取消暂存此文件,但会保留文件中的实际更改,它们现在显示为“未暂存的更改”。
您还可以添加由空格分隔的多个路径
git reset -- path/to/file some/other/path/*
核选项(取消所有内容)非常简洁:
git reset
文档中的一些示例: 要重置单个文件,请点击此处。 要重置多个文件,在那里(尽管对于这个你不需要他们的步骤(4),这是非常特定于上下文的)。