1. 获取提交信息(commit) git show 1c002d(哈希值的前几位): 获取提交的信息; git show HEAD^: 显示HEAD的上级(parent)提交的信息; git show HEAD~: 同上; git show HEAD~3: the first parent of the first parent of the first parent; // experiment 分支上,还没有合并到master分支上的内容 $ git log master..experim…