diff options
author | Junio C Hamano <junkio@cox.net> | 2006-07-07 05:27:24 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-07 12:28:54 -0700 |
commit | fef88bb0134dfd47b4bd17e668bbb860588dcb39 (patch) | |
tree | 4b246ce308995700a64215b826ed4fb4b4d94acb | |
parent | diff.c: respect diff.renames config option (diff) | |
download | tgif-fef88bb0134dfd47b4bd17e668bbb860588dcb39.tar.xz |
diff.c: --no-color to defeat diff.color configuration.
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r-- | diff.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1625,6 +1625,8 @@ int diff_opt_parse(struct diff_options *options, const char **av, int ac) } else if (!strcmp(arg, "--color")) options->color_diff = 1; + else if (!strcmp(arg, "--no-color")) + options->color_diff = 0; else if (!strcmp(arg, "-w") || !strcmp(arg, "--ignore-all-space")) options->xdl_opts |= XDF_IGNORE_WHITESPACE; else if (!strcmp(arg, "-b") || !strcmp(arg, "--ignore-space-change")) |