如何撤消git中的最后一个提交

这个问题在这里已经有了答案:

  • 如何撤消Git中的最新提交? 69个答案

  • 我认为你还没有搞砸。 尝试:

    git reset HEAD^
    

    这将在您提交提交之前使dir处于状态, HEAD^表示当前提交(不再需要的提交)的父项,同时保留它的更改(未暂存)。


    试着简单地重置最后的提交

    git reset --soft HEAD~1
    
    链接地址: http://www.djcxy.com/p/561.html

    上一篇: How to undo the last commit in git

    下一篇: How to uncommit my last commit in Git