git中的log和reflog

git log

  1. 查看当前分支上的所有提交记录
  2. 不能看到当前版本之后的某个版本

git reflog

查看所有的操作记录

  1. 提交记录
  2. 切换分支记录
  3. 在切换分支上的提交记录
  4. reset记录
  5. 能看到所有的版本

你可能感兴趣的:(git中的log和reflog)