git commit 撤销操作

我们修改了本地的代码,然后使用:

`git add file`

`git commit -m '修改原因'`

执行commit后,还没执行push,这时想要撤销这次的commit,该如何操作?

解决方案:

`git reset --soft HEAD^`

这样就成功撤销了commit,如果想要连着add也撤销的话,--soft改为--hard(删除工作空间的改动代码)

命令详解:

`HEAD^` 表示上一个版本,即上一次的commit,也可以写成`HEAD~1`

如果进行两次的commit,想要都撤回,可以使用`HEAD~2`

`--soft` 不删除工作空间的改动代码 ,撤销commit,不撤销git add file

`--hard` 删除工作空间的改动代码,撤销commit且撤销add

另外一点,如果commit注释写错了,先要改一下注释,有其他方法也能实现,

如:

`git commit --amend` 这时候会进入vim编辑器,修改完成你要的注释后保存即可。

    A+
发布日期:2020年10月22日  所属分类:未分类

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: