我不小心修改了我以前的承诺。提交应该是单独的,以保存我对特定文件所做更改的历史记录。
有没有方法撤消最后一次提交?如果我做类似于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。I even did it with the second last amend view into EDOCX1 universal 0 to find the correct number E.G.EDOCX1.
- 只要是干净的,第一命令是真实的"世界"。It produces the head,working directory(unchanged),and index State prior to EDOCX1.The 2nd is a"redo"into a new commit.他们为任何一个EDOCX1工作,不只是EDOCX1。
- So if you did't amend with a new commit message that you need to save,the second part can just be regular EDOCX1.
- 对于一些原因,我是错误的当运行EDOCX1的英文17:EDOCX1。When I replaced EDOCX1 universal 5 with the equivalent commit Hash shown in EDOCX1 universal 0(thanks JJ.)这个答案是奇妙的!
- @Timarnold depending on your shell,you may need to put single or double quotes around EDOCX1如果我运行EDOCX1的标语22在TCSH中为例,结果是EDOCX1的标语23,因为Braces是TCSH翻译的。如果我用单曲,勇气就会保持。
- 是啊,你需要你周围的EDOCX1音标5在EDOCX1中,25
- That first line saved my ass(git reset-soft [email protected])to undo the commit-amend.Thanks!
- 是EDOCX1吗?5…Same as EDOCX1…
- @demisx:no,EDOCX1&0>and HEAD^1are not the same.了解HEAD@{1}和reflog是这个解决方案的核心。比较HEAD@{1}是指git log是指HEAD^1是指HEAD^1的相同历史。反思实际上是一大堆单纯的(如线性的或最起码的参照)vs.The commit history which could be tree like more complicated referencing.如果你想深入了解兔洞检查HEAD~VS HEAD^Stackoverflow.com/questions/2221658/…
- 我失去了改变,改变了我的想法。救命!
- 复制这个网站码到您的网站上以设置一个投票箱在您的网站上。
- 如果你用电力,你就得躲避那只小木棍。
- 如果这是叛乱编辑的命令呢?如何回报原始信息、消息、通信等等?
- 复位是软的,所以不需要在这里。还可以添加环绕HEAD@{1}的那些提示。埃多克斯1
- 法国国防部是--mixed,不是--soft。伯恩壳牌安全伯恩壳牌及其变体是最受欢迎的壳牌壳牌,使用其他壳牌壳牌的人可能需要作出调整,以便为每一个可接受的壳牌壳牌提供一个便携式的答案。
- 它工作,尽管很大。记着要自我,永不改变最后的承诺。
- 它可能有助于跟随一个git commit --amend --reset-author来建立你对你自己的承诺的权威。在我的案件中,我被错误地交给了最后的一个机构,而当重新安排和作出上面所解释的承诺时,我的承诺的权威仍然是A。
- 能否有人解释为什么需要第二个声明(GIT commit-C)?
- 我也不得不在最后做一个(GIT rebase)
- 我做了一个承诺--修正了这个错误,结果在真实的错误中隐藏起来。我得到了两个建议的命令,但他们似乎没有任何效果。Git log still show the amended merge commit as though it was the merge commit.实际汇总的意思是,这里有一个遥控分支机构(因为我推荐),但这并不是我的本地分支机构。我怎么能像我本地分行的一部分一样恢复原状?
- 我只是第一个命令要恢复我所需要的状态。谢谢你,只知道反射是如何使用的。
- 对于未来的读者:如果你有EDOCX1&20Either backtick the right stuff as mentioned above or switch to a legacy command prompt.
使用参考日志:
1 2
| git branch fixing-things HEAD@{1}
git reset fixing-things |
然后,您应该只在工作副本中保留以前修改过的所有更改,并且可以再次提交
要查看以前的索引的完整列表,请键入git reflog。
- 这个WIPES The index too-still useful,but goes beyond a simple"undo".
- EDOCX1和EDOCX1有什么区别吗?
- 是的!EDOCX1 6 is exactly the same as EDOCX1 penal 8 nimal 8 and identifiers the parent of the current commit.EDOCX1 On the other hand refers to the commit which head pointed to before this on e,I.E.They mean different commitments when you check a different branch or amend a commit.
- @Knittl ah no wonder I did think this was possible before,thanks again,good information
- "捕鱼之路"是多余的。简单的字母EDOCX1
- @Dwelle its a good practice to get it on a new branch though
- @Jamesdeath123 he's simply creating a new branch from a previous commit,and then resetting the main branch to the new branch.他一点都不喜欢
- 建立一个临时分支机构,以帮助提供一个名称,而不是传达任何进一步的信息:)
通过以下方式查找您的修订承诺:
注意:为了清楚起见,您可以添加--patch来查看承诺的主体。同git reflog。
然后通过以下方式将您的头重置为以前的任何提交:
。
注意:用真正的提交哈希替换sha1。另外请注意,此命令将丢失所有未提交的更改,因此您可以将它们存储在之前。或者,使用--soft来保留最新的更改,然后提交它们。
然后Cherry选择你需要的另一个承诺:
- 如果你做的话,你可以重新考虑最新的变化,然后再改变它们。
你总是可以拆分一个提交,从手册中
- 使用git-rebase-i commit^启动一个交互式的rebase,其中commit是要拆分的commit。事实上,任何提交范围都可以,只要它包含该提交。
- 用"编辑"操作标记要拆分的提交。
- 在编辑该提交时,执行git reset head^。其效果是头部被一个倒转,指数也随之改变。但是,工作树保持不变。
- 现在,将要在第一次提交时进行的更改添加到索引中。您可以使用git-add(可能是交互式的)或git-gui(或两者都使用)来实现这一点。
- 现在用任何合适的提交消息提交当前索引。
- 重复最后两步,直到工作树干净为止。
- 用git-rebase继续重新base--继续。
- 太复杂了你需要的都是
- Lots of steps yes,but each step is uncomplicated and easy to do.这个词是为了我,得到我的选票。
- Additionally,this answer allows you to selectively pick the changes that you accidently'amended',to does provide some additional value to the git reset-soft head@@@1}approach(which did solve my problem btw)
- You can selectively pick changes with the reflog method,too.正是EDOCX1的英文字母1,字母2,它们都是字母3。
- Way too complicated,and provides more control than need to just undo a mistaken amend,which was what the question asked-not how to manually split a commit.If I mistakenly did an amend,I don't want to have to go through and select which changes I want in each commit!EDOCX1,0是它在那里。
- 这仍然是一个故事和要求一个力量push。取决于你的情况,那可能或可能不是一个问题。
可能值得注意的是,如果您仍然在编辑器中使用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〕
完成。
这将使您完全恢复到以前的承诺。
(包括先前覆盖的分离提交头的日期)
- 是的,但我典型的愿望是复活--soft我只是想分开
如果您已将提交推送到远程,然后错误地修改了对该提交的更改,那么这将解决您的问题。在交涉前,发出一份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〕
添加文件并将其提交到新提交。