如何撤消已完成的“ git commit --amend”而不是“ git commit”

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


有什么方法可以撤消上一次提交?如果我做类似的事情git reset --hard HEAD^,那么第一次提交也将被撤消。


(我尚未推送到任何远程目录)


万千封印
浏览 949回答 3
3回答

慕田峪9158850

您需要做的是创建一个新提交,其详细信息与当前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}

一只名叫tom的猫

通过以下方式查找修改后的提交:git log --reflog注意:--patch为了清楚起见,您可以添加以查看提交的正文。与相同git reflog。然后通过以下方法将HEAD重置为以前的任何提交:git reset SHA1 --hard注意:将 SHA1 替换为实际的提交哈希。另请注意,此命令将丢失所有未提交的更改,因此您可以将它们存放在前面。或者,改用--soft保留最新的更改,然后提交。然后在它上面挑选另一个提交:git cherry-pick SHA1
打开App,查看更多内容
随时随地看视频慕课网APP