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.
这可能是一个非常简单的问题。我提交了我的工作,然后我启动了一个查找和替换脚本,但我想撤消它,以便让我的工作进入实际提交。什么是正确的命令:我知道 git reset soft/hard 或 git amend 但它不合适
你有几个选择:
由于评论状态git reset --hard将带回一切。
git reset --hard
但是,如果您想保留一些修改过的文件,请执行以下操作:
git checkout -- <filename>
将撤消单个文件。