这个StackOverflow问题具有撤消最后一次提交的最佳解决方案/方法。
我是在几周前开始使用Magit的,在浏览了所有文档之后,我仍然没有确定/最佳的方法来撤消错误提交的更改。
例如:
对于撤消和重做,我们可以使用上一次提交:
$ git commit -m "Something terribly misguided"
$ git reset HEAD~
<< edit files as necessary >>
$ git add ...
$ git commit -c ORIG_HEAD # To keep the same commit message
使用Magit重现此过程的最佳工作流程应该是什么?