1. 查看版本库历史状态
git log //命令显示从最近到最远的提交日志
git log --pretty=oneline //精简信息
git reflog //用来记录你的每一次命令(很重要)
2. 在当前版本回退到上一个版本
$ git reset --hard HEAD^
HEAD is now at e475afc add distributed
3. 跳转到指定版本号(必须要知道那个版本的commitid)
$ git reset --hard 1094a
HEAD is now at 83b0afe append GPL
配合着命令 git reflog 使用。