Skip to content

Commit

Permalink
Disable color detection during format-patch
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Anderson <ryan@michonline.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Ryan Anderson authored and Junio C Hamano committed Jul 9, 2006
1 parent 135a522 commit f3aafa4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions builtin-log.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ static int git_format_config(const char *var, const char *value)
strcat(extra_headers, value);
return 0;
}
if (!strcmp(var, "diff.color")) {
return 0;
}
return git_diff_config(var, value);
}

Expand Down

0 comments on commit f3aafa4

Please sign in to comment.