GIT:恢复上次提交?

发布于 2024-12-26 14:41:51 字数 42 浏览 1 评论 0原文

我应该使用哪个命令来恢复上次提交所做的更改?提交已被推送到远程服务器。

Which command do i use to revert the changes made by the last commit? The commit was already pushed to the remote server.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七七 2025-01-02 14:41:51
git revert HEAD

这将撤销最近的提交。然后只需将其向上推即可。

您可以将 HEAD 替换为您想要的修订版本。

git revert HEAD

That will back out the most recent commit. Then just push it up.

You can replace HEAD with the revision you want out.

半窗疏影 2025-01-02 14:41:51

这取决于你所说的恢复是什么意思。您想要执行“真正的”恢复,即创建与您想要恢复的提交完全相反(差异)的另一个提交,或者完全忘记该提交。

在第一种情况下,如上所述:git revert HEAD。在提交消息中,提及恢复的原因。然后推送结果。

在第二种情况下,git reset --hard HEAD~1。但是,您需要用力推动。如果您位于 master 分支(并且您的远程称为 origin),则为 git push origin +master

It depends what you mean by reverting. You want to either do a "real" revert, ie creating another commit which is the exact opposite (diff-wise) of the commit you want to revert, or completely forgetting about the commit.

In the first case, as mentioned: git revert HEAD. In the commit message, mention the reason for the revert. Then push the result.

In the second case, git reset --hard HEAD~1. However, you'll need to force the push. If you're on branch master (and your remote is called origin), that would be git push origin +master.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文