git log 查看commit的历史git show 查看某次commit的修改内容git log -p 查看某个文件的修改历史git log -p -2查看最近2次的更新内容
git show --stat其中 --stat 选项用于简化显示,不展开文件修改细节~