Skip to content

Commit

Permalink
Merge branch 'mh/maint-commit-color-status' into maint
Browse files Browse the repository at this point in the history
* mh/maint-commit-color-status:
  git-status -v: color diff output when color.ui is set
  git-commit: color status output when color.ui is set
  • Loading branch information
Junio C Hamano committed Jan 29, 2009
2 parents f9686cd + 38920dd commit 0630a66
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions builtin-commit.c
Original file line number Diff line number Diff line change
Expand Up @@ -865,6 +865,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 Expand Up @@ -944,6 +947,9 @@ int cmd_commit(int argc, const char **argv, const char *prefix)

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);
Expand Down

0 comments on commit 0630a66

Please sign in to comment.