进行一些更改后如何返回到上次提交?
我对本地文件进行了一些更改,但尚未提交或添加任何更改。我想回到最近的更改之前的先前提交。我该怎么做?
I've made a couple of changes on my local files but I have not commit or added any of them. I want to go back to my previous commit before this recent changes. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将删除这些更改。
但是,为了以防万一,我会添加它们
,然后将它们隐藏起来,
以防万一您后悔自己的决定。最后 2 个命令可以缩短为:
will remove those changes.
However, just in case, I would add them
and then stash them
Just in case you regret your decision. The last 2 commands can be shortened to:
git checkout 可能会为您完成这项工作。您应该能够执行以下操作:
git checkout might do the job for you. You should be able to do something like:
尝试“git checkout --files_to_revert
”
try "git checkout -- files_to_revert
"