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

有没有办法撤销最后的承诺?如果我执行类似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分支临时HEAD@{1}重置上次提交数字复位温度现在,您将拥有您提交的所有文件以及以前提交的文件。检查所有文件的状态。git状态从git阶段重置提交文件。git重置myfile1.js(依此类推)重新附加此提交gitcommit-C HEAD@{1}将文件添加并提交到新提交。

可能值得注意的是,如果您仍然在编辑器中看到提交消息,您可以删除提交消息,它将中止gitcommit--modify命令。

使用ref日志:

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

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

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

您可以执行以下操作来撤消git提交-修改

git reset—软头^git签出文件_from_old_commit_onbranchgit拉动原点your_branch_name

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

现在,您的更改与之前相同。所以你已经完成了gitcommit的撤销-修改

现在您可以执行gitpushorigin<your_branch_name>,以推送到分支。

如果您将提交推到远程,然后错误地修改了对该提交的更改,这将解决您的问题。在提交之前发出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