赞
踩
git reset --soft HEAD^
这样就撤销了你的commit
如果要撤销commit 和 add 并不删除工作空间改动代码
git reset --mixed HEAD^
如果要撤销commit 和 add 并删除工作空间改动代码
git reset --hard HEAD^