## git log filename
> 可以看到fileName相关的commit记录
## git log -p filename
> 可以显示每次提交的diff
## git show commit-id filename
> 只看某次提交中的某个文件变化,可以直接加上fileName
## git log --oneline --graph --decorat
> 用来显示commit关系线
## git show -s --pretty=raw commit_id
> 根据commit-id查看某个提交
## git reflog
> 查看历史命令