If you want to delete the commits up until a specific commit, first run git log
into the command line to find the specific commit id and then run git reset --hard <commit-id>
To remove the last commit from git, you can simply run git reset --hard HEAD^
If you are removing multiple commits from the top, you can run git reset --hard HEAD~2
to remove the last two commits.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…