Delete commits from a branch in Git

后端 未结 30 2056
醉话见心
醉话见心 2020-11-21 07:17

I would like to know how to delete a commit.

By delete, I mean it is as if I didn\'t make that commit, and when I do a push in the future, my changes wi

30条回答
  •  悲&欢浪女
    2020-11-21 07:42

    Reset on local branch

    git reset --hard HEAD~ So git reset --hard HEAD~3
    

    Force push to origin

    git push -f origin
    

提交回复
热议问题