Skip to content

Commit

Permalink
git-status -v: color diff output when color.ui is set
Browse files Browse the repository at this point in the history
When using "git status -v", the diff output wasn't colored, even though
color.ui was set. Only when setting color.diff it worked.

Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Markus Heidelberg authored and Junio C Hamano committed Jan 9, 2009
1 parent 3f4b609 commit 38920dd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions builtin-commit.c
Original file line number Diff line number Diff line change
Expand Up @@ -866,6 +866,9 @@ int cmd_status(int argc, const char **argv, const char *prefix)
if (wt_status_use_color == -1)
wt_status_use_color = git_use_color_default;

if (diff_use_color_default == -1)
diff_use_color_default = git_use_color_default;

argc = parse_and_validate_options(argc, argv, builtin_status_usage, prefix);

index_file = prepare_index(argc, argv, prefix);
Expand Down

0 comments on commit 38920dd

Please sign in to comment.