Throw away local commits in Git

前端 未结 20 1687
遥遥无期
遥遥无期 2020-12-02 03:08

Due to some bad cherry-picking, my local Git repository is currently five commits ahead of the origin, and not in a good state. I want to get rid of all these commits and st

20条回答
  •  执笔经年
    2020-12-02 03:47

    On your branch attempt:

    git reset --hard origin/
    

    Validate the reversal (to the state, with no local commits), using "git log" or "git status" hence.

提交回复
热议问题