Repository Demo
注意:这里的设置都是针对从初始commit C0到HEAD的log graph显示
First Parent
First Parent just follow up first parent commit. This will help understand overwhole history.
剩下8个黑色的commits。移除了3个红色的commits,即移除了不属于master分支的commits
No merges
No merges Skips all merge points.
剩下的9个commits分成三段,按照分支进行独立展示。即移除了合并产生的2个commits:C4、C8
Compressed Graph
Compressed Graph The log graph is simplified to include merge points, commits with references, and possibly other commits.
剩下7个commits,移除了4个commits,分别为C0、C2、C5、C9
C1、C4是第一次merge的起点和终点
C6、C7是第二次merge的起点和终点
C3、C7、C10是commits with reference
将dev重置到C5这个commit上
git branch -f dev 685f040869b0fbbff06439b942ac259a0e307b80
仍然是显示7个commits
C1、C4是第一次merge的起点和终点
C6、C7是第二次merge的起点和终点
C5、C7、C10是commits with reference
(将dev分支重置回C3 git branch -f dev c464daa133936ebb3467d394974b2a2ed0e8b825)
Show labelled commits only
The log graph is simplified to include commits with references only.
这个只显示从初始commit到HEAD上的,不会显示其他的