git reset --hard xxx git reset

2018-09-26  本文已影响25人  诺CIUM

git reset --hard xxxx

彻底回退版本,连本地文件都会被回退到上个版本的内容

git log 查看commit信息

image.png

git reflog命令来查看所有的版本信息

image1.png

我想退回到commit: 801 即为872db73

git reset --hard 872db73

image.png

git log 再次查看commit信息

image.png

本地文件和commit信息都回退了

git reset --soft xxxx

只回退commit,如果你想再次提交直接git commit即可

git log 查看commit信息

image.png

git reset --soft dca2b4f

image.png

本地文件还在,当commit信息已经回退

git revert xxx

git revert用于撤回某次commit操作。此次操作会生成一次新的commit,对原有commit操作无影响,撤回只针对指定的commit。

上一篇下一篇

猜你喜欢

热点阅读