I'm curious what do line colors mean in git log --graph
?
Yes, I'm asking about lines |
/
\
which connect commits *
at the left edge of console output.
Question #1
Do these colors have some hidden meaning?
Or do they are pseudo-randomly chosen?
Question #2
Sometimes overlapped (but disconnected) lines have the same color.
For example, see at the purple lines on the screenshot above:
- first line from
a55
toe1c
- second line from
3c1
to043
Is it possible to ask git to choose colors wisely to avoid isolated (not having common commit) same color lines to overlap?
I want the graph to be more easily readable.
The colors are merely meant to help you view the lines as distinct from other lines. To answer question #1, they are assigned not pseudo-randomly, but rather sequentially, each time
git log --graph
picks a new "column number". Unfortunately there are two issues I know of. Both tie into your question #2.Here is the full list of colors by name:
Visually, many of these colors "look the same" (or similar enough to be kind of indistinguishable). In particular, I find that the "bold" ones look too much like the "regular" ones unless there are quite a few letters printed in "bold", i.e., my Mac Terminal font's "bold" is just not that much bold-er than its standard-weight. This makes many lines overly visually similar in the graph for
git log --graph --decorate --oneline --all
run on the Git repository for Git, for instance.Edit: this is now fixable (or work-around-able), as of Git 2.12, using the new
log.graphColors
configuration entry. This is a comma separated list of color names or color numbers (see thegit config
documentation entry for "color" in the Values section).Second, the "column number" is, currently, not actually the column number of the line. Instead, it's the column number of the commit. The line color goes up from that commit, to the commit above it. All the magenta lines in your image snapshot go to commits printed in column #0: both
a55fd8d
and3c1494a
are in "column 0". (They are both merge commits so they consolidate incoming lines.)You can always clone the Git repository for Git and write new code. I will note that the existing graph.c is nearly 1400 lines long, though.
In this commit 73c727d69f47572bf7f21fa31831f9a3fdad944c ("log --graph: customize the graph lines with config log.graphColors", 2017-01-19), it's possible to choose the colors with the
log.graphColors
config.I use Git Bash and I exclude
GIT_COLOR_BLUE
color for above reason.I can use any hex color codes (at least on Git Bash). Below config setting uses only three colors.