[PATCH (Eek!)] git diff does not honor --no-ext-diff
From: Nazri Ramliy <hidden>
Date: 2016-06-15 22:45:41
Subsystem:
the rest · Maintainer:
Linus Torvalds
Hello list, git-diff does not honor the --no-ext-diff option in both cases when the external diff program is set via diff.external and gitattributes. Is this intentional? If not the following patch seems to fix it. I think there must be a cleaner way of fixing this than doing it by `hand' hence the Eek! Nazri. builtin-diff.c | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletions(-)
diff --git a/builtin-diff.c b/builtin-diff.c
index 7ceceeb..4ac7e15 100644
--- a/builtin-diff.c
+++ b/builtin-diff.c@@ -290,6 +290,19 @@ int cmd_diff(int argc, const char **argv, constchar *prefix)
/* Otherwise, we are doing the usual "git" diff */
rev.diffopt.skip_stat_unmatch = !!diff_auto_refresh_index;
+ DIFF_OPT_SET(&rev.diffopt, ALLOW_EXTERNAL);
+ /*
+ * Do we have --no-ext-diff and have external diff setup via either
+ * gitconfig or gitattributes, then clear ALLOW_EXTERNAL by hand. Eek.
+ */
+ for (i = 1; i < argc; i++) {
+ const char *arg = argv[i];
+ if (!strcmp(arg, "--"))
+ break;
+ else if (!strcmp(arg, "--no-ext-diff"))
+ DIFF_OPT_CLR(&rev.diffopt, ALLOW_EXTERNAL);
+ }
+
if (nongit)
die("Not a git repository");
argc = setup_revisions(argc, argv, &rev, NULL);@@ -298,7 +311,6 @@ int cmd_diff(int argc, const char **argv, constchar *prefix)
if (diff_setup_done(&rev.diffopt) < 0)
die("diff_setup_done failed");
}
- DIFF_OPT_SET(&rev.diffopt, ALLOW_EXTERNAL);
DIFF_OPT_SET(&rev.diffopt, RECURSIVE);
DIFF_OPT_SET(&rev.diffopt, ALLOW_TEXTCONV);