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

How to undo “git commit --amend” done instead of “git commit”

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

有没有方法撤消最后一次提交?如果我做类似于git reset --hard HEAD^的事情,第一次承诺也会失败。

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


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

1
2
3
4
5
6
7
8
9
10
11
12
# 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
2
git branch fixing-things HEAD@{1}
git reset fixing-things

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

要查看以前的索引的完整列表,请键入git reflog


通过以下方式查找您的修订承诺:

1
git log --reflog

注意:为了清楚起见,您可以添加--patch来查看承诺的主体。同git reflog

然后通过以下方式将您的头重置为以前的任何提交:

1
git reset SHA1 --hard

注意:用真正的提交哈希替换sha1。另外请注意,此命令将丢失所有未提交的更改,因此您可以将它们存储在之前。或者,使用--soft来保留最新的更改,然后提交它们。

然后Cherry选择你需要的另一个承诺:

1
git cherry-pick SHA1


你总是可以拆分一个提交,从手册中

  • 使用git-rebase-i commit^启动一个交互式的rebase,其中commit是要拆分的commit。事实上,任何提交范围都可以,只要它包含该提交。
  • 用"编辑"操作标记要拆分的提交。
  • 在编辑该提交时,执行git reset head^。其效果是头部被一个倒转,指数也随之改变。但是,工作树保持不变。
  • 现在,将要在第一次提交时进行的更改添加到索引中。您可以使用git-add(可能是交互式的)或git-gui(或两者都使用)来实现这一点。
  • 现在用任何合适的提交消息提交当前索引。
  • 重复最后两步,直到工作树干净为止。
  • 用git-rebase继续重新base--继续。


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


也许可以用git reflog得到修正前和修正后的两个承诺。

然后用git diff before_commit_id after_commit_id > d.diff进行修正前后的比较。

下一步使用git checkout before_commit_id返回到提交前

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

这解决了我的问题。


你可以在下面做撤销你的git commit —amend

  • 江户十一〔21〕号
  • 埃多克斯1〔22〕
  • 埃多克斯1〔23〕
  • ===========================

    现在,您的更改与前面的相同。所以你已经完成了对EDOCX1的撤消(20)

    现在你可以做git push origin ,推到分支。


    这已经晚了近9年,但没有看到这一变化提到完成相同的事情(这是其中的一些组合,类似于顶级答案(https://stackoverflow.com/a/1459264/4642530)。

    搜索分支上所有分离的头

    埃多克斯1〔17〕

    然后找到sha1哈希

    重置为旧sha1

    埃多克斯1〔18〕

    然后再向上推。

    埃多克斯1〔19〕

    完成。

    这将使您完全恢复到以前的承诺。

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


    如果您已将提交推送到远程,然后错误地修改了对该提交的更改,那么这将解决您的问题。在交涉前,发出一份git log号文件,以查找交涉许可证。(这假设远程名为origin)。现在使用该sha发出这些命令。

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    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


  • 使用上次提交签出到临时分支

    江户十一〔四〕号

  • 重置上次提交

    埃多克斯1〔5〕

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

    埃多克斯1〔6〕

  • 从git阶段重置提交文件。

    git reset myfile1.js

  • 重新附加此提交

    埃多克斯1〔8〕

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