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

时间:2009-09-22 09:56:19

标签: git commit undo amend

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

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

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

12 个答案:

答案 0 :(得分:1913)

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

答案 1 :(得分:117)

使用ref-log

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

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

查看以前索引类型git reflog

的完整列表

答案 2 :(得分:49)

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

git log --reflog

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

然后将HEAD重置为之前提交的任何一个提交点:

git reset SHA1 --hard

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

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

git cherry-pick SHA1

答案 3 :(得分:22)

您始终可以拆分提交, 来自manual

  • 使用git rebase -i commit ^启动交互式rebase,其中commit是要拆分的提交。事实上,任何提交范围都可以,只要它包含该提交。
  • 使用“编辑”操作标记要拆分的提交。
  • 在编辑提交时,执行git reset HEAD ^。结果是HEAD被一个重绕,索引也随之而来。但是,工作树保持不变。
  • 现在将更改添加到您希望在第一次提交中拥有的索引。您可以使用git add(可能是交互式)或git-gui(或两者)来做到这一点。
  • 使用现在适当的提交消息提交now-current索引。
  • 重复最后两步,直到工作树干净。
  • 使用git rebase继续使用rebase --continue。

答案 4 :(得分:22)

这些使用 HEAD@{1} 的答案都不适合我,所以这是我的解决方案:

git reflog

d0c9f22 HEAD@{0}: commit (amend): [Feature] - ABC Commit Description 
c296452 HEAD@{1}: commit: [Feature] - ABC Commit Description 

git reset --soft c296452

您的暂存环境现在将包含您不小心与 c296452 提交合并的所有更改。

答案 5 :(得分:13)

也许可以在修改之前和修改之后使用git reflog来获得两次提交。

然后使用git diff before_commit_id after_commit_id > d.diff在修改之前和修改之后获得差异。

接下来在提交之前使用git checkout before_commit_id返回

最后使用git apply d.diff来应用你所做的真正改变。

这解决了我的问题。

答案 6 :(得分:13)

可能值得注意的是,如果您仍然在编辑器中使用提交消息,则可以删除提交消息,它将中止git commit --amend命令。

答案 7 :(得分:3)

您可以执行以下操作来撤消git commit —amend

  1. git reset --soft HEAD^
  2. git checkout files_from_old_commit_on_branch
  3. git pull origin your_branch_name

===================================

现在,您所做的更改与以前相同。这样就完成了git commit —amend

的撤消操作

现在您可以执行git push origin <your_branch_name>来推送到分支。

答案 8 :(得分:2)

差不多9年了,但没有看到这种变化提到完成同样的事情(它是其中一些的组合,类似于最佳答案(https://stackoverflow.com/a/1459264/4642530 )。

搜索分支上的所有分离的头

git reflog show origin/BRANCH_NAME --date=relative

然后找到SHA1哈希

重置为旧SHA1

git reset --hard SHA1

然后再将其推回。

git push origin BRANCH_NAME

完成。

这将完全恢复旧提交。

(包括先前覆盖的分离提交头的日期)

答案 9 :(得分:2)

简单的解决方案 已提供解决方案:如果您的HEAD提交与远程提交同步。

  • 在本地工作区中再创建一个分支,并使其与远程分支保持同步。
  • Cherry从分支中选择HEAD提交(其中git commit --amend执行到新创建的分支上)。

精心挑选的提交将仅包含您的最新更改,而不包含旧更改。 现在,您可以重命名此提交。

答案 10 :(得分:1)

  1. 使用上次提交签出临时分支

    git branch temp HEAD@{1}

  2. 重置上次提交

    git reset temp

  3. 现在,您将提交所有文件以及之前的提交。检查所有文件的状态。

    git status

  4. 从git stage重置您的提交文件。

    git reset myfile1.js(依此类推)

  5. 重新附加此提交

    git commit -C HEAD@{1}

  6. 添加文件并将其提交到新提交。

答案 11 :(得分:1)

如果您已将提交推送到远程,然后错误地修改了该提交的更改,则可以解决您的问题。发出git log以在提交之前找到SHA。 (这假设远程被命名为origin)。现在,使用该SHA发出这些命令。

git reset --soft <SHA BEFORE THE AMMEND>
#you now see all the changes in the commit and the amend undone

#save ALL the changes to the stash
git stash

git pull origin <your-branch> --ff-only
#if you issue git log you can see that you have the commit you didn't want to amend

git stash pop
#git status reveals only the changes you incorrectly amended

#now you can create your new unamended commit