summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 152d70f)
raw | patch | inline | side by side (parent: 152d70f)
author | Markus Heidelberg <markus.heidelberg@web.de> | |
Thu, 8 Jan 2009 18:53:01 +0000 (19:53 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Fri, 9 Jan 2009 01:30:43 +0000 (17:30 -0800) |
When using "git commit" and there was nothing to commit (the editor
wasn't launched), the status output wasn't colored, even though color.ui
was set. Only when setting color.status it worked.
Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
wasn't launched), the status output wasn't colored, even though color.ui
was set. Only when setting color.status it worked.
Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-commit.c | patch | blob | history |
diff --git a/builtin-commit.c b/builtin-commit.c
index e88b78f8114e48c542a52bdc42b9c573a7e94cad..2d90f7430de7c59bd8dbc5c91be19b899a5eac3a 100644 (file)
--- a/builtin-commit.c
+++ b/builtin-commit.c
git_config(git_commit_config, NULL);
+ if (wt_status_use_color == -1)
+ wt_status_use_color = git_use_color_default;
+
argc = parse_and_validate_options(argc, argv, builtin_commit_usage, prefix);
index_file = prepare_index(argc, argv, prefix);