Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Anderson <ryan@michonline.com>2006-07-09 10:28:21 +0400
committerJunio C Hamano <junkio@cox.net>2006-07-09 11:48:16 +0400
commitf3aafa4db29c3d4799eeeda21efaf15d364ae59a (patch)
treedfa98d56824dd39202dc7011295269df90db4e69 /builtin-log.c
parent135a522e3f0ddc85664b3cd094918f095ac76d79 (diff)
Disable color detection during format-patch
Signed-off-by: Ryan Anderson <ryan@michonline.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-log.c')
-rw-r--r--builtin-log.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/builtin-log.c b/builtin-log.c
index 698b71ecc8..0aeeaa4e20 100644
--- a/builtin-log.c
+++ b/builtin-log.c
@@ -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);
}