我无意中修改了之前的承诺。提交应该是单独的,以保存我对特定文件所做的更改的历史记录。
有没有办法撤销最后的承诺?如果我执行类似gitreset-hardHEAD^的操作,第一次提交也会被撤销。
(我还没有推送到任何远程目录)
我无意中修改了之前的承诺。提交应该是单独的,以保存我对特定文件所做的更改的历史记录。
有没有办法撤销最后的承诺?如果我执行类似gitreset-hardHEAD^的操作,第一次提交也会被撤销。
(我还没有推送到任何远程目录)
当前回答
如果您将提交推到远程,然后错误地修改了对该提交的更改,这将解决您的问题。在提交之前发出git日志以查找SHA。(这假设remote被命名为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
其他回答
你总是可以拆分提交,来自手册
使用git rebase-i commit ^启动交互式rebase,其中commit是要拆分的提交。事实上,任何提交范围都可以,只要它包含该提交。使用“编辑”操作标记要拆分的提交。在编辑提交时,执行git-resetHEAD^。结果是HEAD被重绕了一圈,索引也随之改变。然而,工作树保持不变。现在,将更改添加到第一次提交时所需的索引中。您可以使用gitadd(可能以交互方式)或gitgui(或两者都使用)来实现这一点。使用现在合适的提交消息提交当前索引。重复最后两个步骤,直到工作树干净。使用git-rebase继续rebase--Continue。
您可以执行以下操作来撤消git提交-修改
git reset—软头^git签出文件_from_old_commit_onbranchgit拉动原点your_branch_name
====================================
现在,您的更改与之前相同。所以你已经完成了gitcommit的撤销-修改
现在您可以执行gitpushorigin<your_branch_name>,以推送到分支。
也许可以使用git-relog在修改前和修改后获得两个提交。
然后使用git diff before_commit_id after_commit_id>d.diff获取修正前和修正后的差异。
接下来使用git checkout before_commit_id返回提交前
最后使用git-apply.diff应用您所做的真正更改。
这解决了我的问题。
使用ref日志:
git branch fixing-things HEAD@{1}
git reset fixing-things
然后,您应该只在工作副本中保存所有以前修改过的更改,然后可以再次提交
要查看以前索引的完整列表,请键入git-relog
如果您将提交推到远程,然后错误地修改了对该提交的更改,这将解决您的问题。在提交之前发出git日志以查找SHA。(这假设remote被命名为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