Skip to content

撤回提交

1.撤回最后一次提交,但保留改动

bash
git reset --soft HEAD^

2.撤回最后一次提交,不保留改动

bash
git reset --hard HEAD^

3.撤回多个提交

bash
git reset --hard HEAD~3

4.撤回特定提交

bash
git revert <commit_hash>

恢复提交

1.使用 reflog 找回被重置的提交

bash
git reflog
git reset --hard <commit_hash>

交互式 Rebase 删除提交

1.使用交互式 rebase 命令打开最近几次提交的历史。例如,如果要修改最近的 5 次提交:

bash
git rebase -i HEAD~5

2.此命令会打开一个文本编辑器,列出最近的 5 次提交,类似如下:

sql
pick c807ffb message of commit
pick a7b5e4c another commit message
pick 2345abc yet another commit message

3.将你想要删除的提交前面的 pick 替换为 drop。例如,如果你想删除 c807ffb 提交,将其更改为:

sql
drop c807ffb message of commit

4.保存并关闭编辑器。Git 会重新应用提交历史,并删除指定的提交。

5.重新调整好提交历史后,使用强制推送更新远程仓库:

error

Terminal is dumb, but EDITOR unset

这个错误是因为 Git 需要一个文本编辑器来执行交互式 rebase 操作,但当前环境没有配置 EDITOR。

bash
set GIT_EDITOR=code --wait
git rebase -i HEAD~5

fatal

It seems that there is already a rebase-merge directory, and I wonder if you are in the middle of another rebase. If that is the case, please try

    git rebase (--continue | --abort | --skip)

If that is not the case, please

    rm -fr ".git/rebase-merge"

and run me again. I am stopping in case you still have something valuable there.

这个错误是因为之前的 rebase 操作没有完成。可以通过以下方法来解决这个问题:

bash
# 继续 rebase(如果已经解决了冲突并想继续)
git rebase --continue
bash
# 跳过当前的 rebase 步骤(如果不需要修改当前的提交):
git rebase --skip
bash
# 中止 rebase 操作(取消当前的 rebase,回到原状态):
git rebase --abort