如何撤销本地git commit

git log

看记录

git reset --soft HEAD^    

留下更改的代码

git reset --hard HEAD^    

恢复到上一个commit,不留下更改的代码

你可能感兴趣的:(如何撤销本地git commit)