git log
git reset –hard f093b6ed512f761a346e2e5c0f00230e448c217c
git reset –hard <commit_id>
git push origin HEAD –force
git reset –mixed: 此为默认方式,不带任何参数的git reset,即时这种方式,它回退到某个版本,只保留源码,回退commit和index信息。 git reset –soft: 回退到某个版本,只回退了commit信息,不会恢复到index file一级。如果还要提交,直接commit。 git reset –hard: 彻底回退到某个版本,本地的源码也会变为上一个版本的内容。
|