Skip to content

Commit

Permalink
Merge branch 'ph/format-patch-no-color'
Browse files Browse the repository at this point in the history
* ph/format-patch-no-color:
  format-patch: ignore ui.color
  • Loading branch information
Junio C Hamano committed Sep 15, 2011
2 parents 1e5814f + 787570c commit 559357b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 2 additions & 1 deletion builtin/log.c
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,8 @@ static int git_format_config(const char *var, const char *value, void *cb)
string_list_append(&extra_cc, value);
return 0;
}
if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff")) {
if (!strcmp(var, "diff.color") || !strcmp(var, "color.diff") ||
!strcmp(var, "color.ui")) {
return 0;
}
if (!strcmp(var, "format.numbered")) {
Expand Down
8 changes: 8 additions & 0 deletions t/t4014-format-patch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -886,4 +886,12 @@ test_expect_success 'empty subject prefix does not have extra space' '
test_cmp expect actual
'

test_expect_success 'format patch ignores color.ui' '
test_unconfig color.ui &&
git format-patch --stdout -1 >expect &&
test_config color.ui always &&
git format-patch --stdout -1 >actual &&
test_cmp expect actual
'

test_done

0 comments on commit 559357b

Please sign in to comment.