From: Adam Simpkins Date: Sat, 24 May 2008 23:02:04 +0000 (-0700) Subject: Fix output of "git log --graph --boundary" X-Git-Tag: v1.5.6-rc0~1^2~1 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/3c68d67b572bce7ff41de463e75ee093e9dd71b7?hp=3c68d67b572bce7ff41de463e75ee093e9dd71b7 Fix output of "git log --graph --boundary" Previously the graphing API wasn't aware of the revs->boundary flag, and it always assumed that commits marked UNINTERESTING would not be displayed. As a result, the boundary commits were printed at the end of the log output, but they didn't have any branch lines connecting them to their children in the graph. There was also another bug in the get_revision() code that caused graph_update() to be called twice on the first boundary commit. This caused the graph API to think that a commit had been skipped, and print a "..." line in the output. Signed-off-by: Adam Simpkins Signed-off-by: Junio C Hamano ---