Answers:
您需要做的是创建一个新提交,其详细信息与当前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}
git commit --amend
。第二个是对新提交的“重做”。这些对任何人都有用git commit
,而不仅仅是--amend
。
git commit
。
git reset --soft HEAD@{1}
:fatal: ambiguous argument 'HEAD@1': unknown revision or path not in the working tree. Use '--' to separate paths from revisions
。当我用(感谢JJD!)中HEAD@{1}
所示的等效提交哈希替换时git reflog
,此答案非常有用!
HEAD@{1}
。echo HEAD@{1}
例如,如果我在tcsh中运行,则输出是HEAD@1
因为花括号是由tcsh解释的。如果我使用单引号,则保留大括号。
使用ref-log:
git branch fixing-things HEAD@{1}
git reset fixing-things
然后,您应该只在工作副本中拥有所有先前修改的更改,然后可以再次提交
查看以前的索引类型的完整列表 git reflog
HEAD@{1}
和之间有什么区别HEAD~1
?
HEAD~1
完全相同,HEAD^
并且标识该父级。HEAD@{1}
另一方面,它是指HEAD在此之前指向的提交,即,当您签出其他分支或修改提交时,它们表示不同的提交。
git reset HEAD@{1}
就足够了。
通过以下方式查找修改后的提交:
git log --reflog
注意:--patch
为了清楚起见,您可以添加以查看提交的正文。与相同git reflog
。
然后通过以下方法将HEAD重置为以前的任何提交:
git reset SHA1 --hard
注意:将 SHA1 替换为实际的提交哈希。另请注意,此命令将丢失所有未提交的更改,因此您可以将它们存放在前面。或者,改用--soft
保留最新的更改,然后提交。
然后在它上面挑选另一个提交:
git cherry-pick SHA1
git reset SHA1 --soft
,则可以保留最新的更改,然后提交。
您可以随时拆分提交,请参见手册
git reflog
是您所需的吗
git reset
而不是git reset --soft
做git add --patch
。
如果您已将提交推送到远程,然后错误地修改了该提交的更改,则可以解决您的问题。发出a 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
距此晚了将近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
做完了
这将使您完全恢复到旧的提交。
(包括先前覆盖的分离提交头的日期)
--soft
以保留我的更改。我只希望它单独提交
上次提交检出到临时分支
git branch temp HEAD@{1}
重置上一次提交
git reset temp
现在,您将拥有提交和先前提交的所有文件。检查所有文件的状态。
git status
从git阶段重置您的提交文件。
git reset myfile1.js
(依此类推)
重新附加此提交
git commit -C HEAD@{1}
添加文件并将其提交到新提交。
git reflog
中找到了正确的数字,例如{2}
。