git 版本回退

  • 查看版本记录
huanyu@ubuntu:~/git$ git log

简洁显示记录

huanyu@ubuntu:~/git$ git log  --pretty=oneline

说明:
1、你看到的一大串类似1094adb...的是commit id(版本号)
2、HEAD表示当前版本

  • 回到上一个版本
huanyu@ubuntu:~/git$ git reset --hard HEAD^
HEAD is now at 41c6109 change the file once
  • 回到前一个版本
huanyu@ubuntu:~/git$ git reset --hard HEAD^^
  • 回到前100个版本
huanyu@ubuntu:~/git$ git reset --hard HEAD~100

在回到上一个版本之后,刚才的版本记录就会没有,要想再回到刚才的版本,只能回到记录上查看刚才版本的commit ID,通过ID可以回到指定的版本

  • 回到指定版本
huanyu@ubuntu:~/git$ git reset --hard f41184
HEAD is now at f411842 append something

如果命令行窗口关闭了,还可以用以下命令来查看历史命令,从而可以知道想要恢复的ID

huanyu@ubuntu:~/git$ git reflog

原文地址

你可能感兴趣的:(git 版本回退)