log --graph: customize the graph lines with config log.graphColors
If you have a 256 colors terminal (or one with true color support), then the predefined 12 colors seem limited. On the other hand, you don't want to draw graph lines with every single color in this mode because the two colors could look extremely similar. This option allows you to hand pick the colors you want. Even with standard terminal, if your background color is neither black or white, then the graph line may match your background and become hidden. You can exclude your background color (or simply the colors you hate) with this. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
bc4075653e
commit
73c727d69f
@ -313,6 +313,28 @@ test_expect_success 'log --graph with merge' '
|
||||
test_cmp expect actual
|
||||
'
|
||||
|
||||
cat > expect.colors <<\EOF
|
||||
* Merge branch 'side'
|
||||
<BLUE>|<RESET><CYAN>\<RESET>
|
||||
<BLUE>|<RESET> * side-2
|
||||
<BLUE>|<RESET> * side-1
|
||||
* <CYAN>|<RESET> Second
|
||||
* <CYAN>|<RESET> sixth
|
||||
* <CYAN>|<RESET> fifth
|
||||
* <CYAN>|<RESET> fourth
|
||||
<CYAN>|<RESET><CYAN>/<RESET>
|
||||
* third
|
||||
* second
|
||||
* initial
|
||||
EOF
|
||||
|
||||
test_expect_success 'log --graph with merge with log.graphColors' '
|
||||
test_config log.graphColors ",, blue,invalid-color, cyan, red , " &&
|
||||
git log --color=always --graph --date-order --pretty=tformat:%s |
|
||||
test_decode_color | sed "s/ *\$//" >actual &&
|
||||
test_cmp expect.colors actual
|
||||
'
|
||||
|
||||
test_expect_success 'log --raw --graph -m with merge' '
|
||||
git log --raw --graph --oneline -m master | head -n 500 >actual &&
|
||||
grep "initial" actual
|
||||
|
||||
Reference in New Issue
Block a user