Code

git log --graph: print '*' for all commits, including merges
authorAdam Simpkins <adam@adamsimpkins.net>
Thu, 5 Jun 2008 09:28:13 +0000 (02:28 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 6 Jun 2008 18:56:43 +0000 (11:56 -0700)
commit03300c0ac0dfd6098ff65cff518bfffb05ae4194
treeaa135fde48446e06a36ff6b3f66f826db73e1190
parent1b9a9467f8b9a8da2fe58d10ae16779492aa7737
git log --graph: print '*' for all commits, including merges

Previously, merge commits were printed with 'M' instead of '*'.  This
had the potential to confuse users when not all parents of the merge
commit were included in the log output.

As Junio has pointed out, merge commits can almost always be easily
identified from the log message, anyway.

Signed-off-by: Adam Simpkins <adam@adamsimpkins.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
graph.c