commit | 5e11bee65f601ba97dc4c61c75fcb2f448fdcb1c | [log] [tgz] |
---|---|---|
author | Nazri Ramliy <ayiehere@gmail.com> | Thu Jun 24 08:21:16 2010 +0800 |
committer | Junio C Hamano <gitster@pobox.com> | Thu Jun 24 12:57:34 2010 -0700 |
tree | e9a6767dfbaeec64b96843c74f4315d8d9220770 | |
parent | 67a4b5864f9423ccfe8090365029dae918504830 [diff] [blame] |
Allow customizable commit decorations colors Signed-off-by: Nazri Ramliy <ayiehere@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff --git a/builtin/log.c b/builtin/log.c index 976e16f9..0835866 100644 --- a/builtin/log.c +++ b/builtin/log.c
@@ -296,6 +296,9 @@ default_show_root = git_config_bool(var, value); return 0; } + if (!prefixcmp(var, "color.decorate.")) + return parse_decorate_color_config(var, 15, value); + return git_diff_ui_config(var, value, cb); }