I want to see a "git log --oneline --graph" with all non-merge commits removed, but history is rewritten so that the merge commits represent the entire topics and are shown to have all the parents of the base commits. e.g. if the full graph is * 8118403 Merge commit 'bbb2437' |\ | * bbb2437 3p | * dfde6b9 2p * | 9c0aeb2 2 |/ * 8db1c06 1 I just want to see * 8118403 Merge commit 'bbb2437' |\ | | |/ * 8db1c06 1 I had a quick look of rev-list-options.txt but couldn't find anything that does that (--simplify-merges looks different), and revision.c is not that familiar to me to figure this out by myself. Help? -- Duy