协慌网

登录 贡献 社区

如何撤消 “git commit --amend” 而不是“git commit”

我不小心修改了我以前的提交。提交应该是独立的,以保留我对特定文件所做更改的历史记录。

有没有办法撤消最后一次提交?如果我执行git reset --hard HEAD^ ,第一次提交也会撤消。

(我还没有推到任何远程目录)

答案

您需要做的是创建一个新提交,其具有与当前HEAD提交相同的详细信息,但父级作为HEAD的先前版本。 git reset --soft将移动分支指针,以便下一次提交发生在当前分支头现在的不同提交之上。

# Move the current head so that it's pointing at the old commit
# Leave the index intact for redoing the commit.
# HEAD@{1} gives you "the commit that HEAD pointed at before 
# it was moved to where it currently points at". Note that this is
# different from HEAD~1, which gives you "the commit that is the
# parent node of the commit that HEAD is currently pointing to."
git reset --soft HEAD@{1}

# commit the current tree using the commit details of the previous
# HEAD commit. (Note that HEAD@{1} is pointing somewhere different from the
# previous command. It's now pointing at the erroneously amended commit.)
git commit -C HEAD@{1}

使用ref-log

git branch fixing-things HEAD@{1}
git reset fixing-things

然后,您应该只在您的工作副本中进行所有先前修改的更改,并且可以再次提交

查看以前索引的完整列表,输入git reflog

通过以下方式查找修改的提交:

git log --reflog

注意:为了清楚起见,您可以添加--patch以查看提交的正文。与git reflog相同。

然后将 HEAD 重置为任何先前的提交,只需通过以下方式:

git reset SHA1 --hard

注意: SHA1 替换为您的实际提交哈希。另请注意,此命令将丢失所有未提交的更改,因此您可以先将其存储。或者, 使用--soft来保留最新的更改 ,然后提交它们。

然后樱桃挑选你需要的其他提交:

git cherry-pick SHA1