summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-02-29 18:14:17 -0800
committerJunio C Hamano <gitster@pobox.com>2012-03-01 12:00:01 -0800
commiteb1d0d6b27e15c6a8c7c3b1ec10be19998da23a6 (patch)
treeafdd0617dd5c9d5970e52c8027a79d68155e2116
parentb3f01ff29f7131e959bcfdfd004744d74d5fa319 (diff)
downloadgit-jc/diff-ignore-mode.tar.gz
diff --ignore-mode-changejc/diff-ignore-mode
It may be useful if you can view the diff while ignoring changes that only touch the executable bit without changing the contents (e.g. a careless imports of vendor drop from tarballs), and this teaches the diff machinery to ignore them. A change that touches both contents and the executable bit is not ignored. Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--diff.c29
-rw-r--r--diff.h1
2 files changed, 29 insertions, 1 deletions
diff --git a/diff.c b/diff.c
index 0ecbf325a2..62fefbaefa 100644
--- a/diff.c
+++ b/diff.c
@@ -1920,7 +1920,8 @@ static void builtin_diff(const char *name_a,
if (one->mode != two->mode) {
strbuf_addf(&header, "%s%sold mode %06o%s\n", line_prefix, set, one->mode, reset);
strbuf_addf(&header, "%s%snew mode %06o%s\n", line_prefix, set, two->mode, reset);
- must_show_header = 1;
+ if (!DIFF_OPT_TST(o, IGNORE_MODE_CHANGE))
+ must_show_header = 1;
}
if (xfrm_msg)
strbuf_addstr(&header, xfrm_msg);
@@ -3166,6 +3167,8 @@ int diff_opt_parse(struct diff_options *options, const char **av, int ac)
}
else if (!strcmp(arg, "--no-renames"))
options->detect_rename = 0;
+ else if (!strcmp(arg, "--ignore-mode-change"))
+ DIFF_OPT_SET(options, IGNORE_MODE_CHANGE);
else if (!strcmp(arg, "--relative"))
DIFF_OPT_SET(options, RELATIVE_NAME);
else if (!prefixcmp(arg, "--relative=")) {
@@ -4191,10 +4194,34 @@ void diffcore_fix_diff_index(struct diff_options *options)
qsort(q->queue, q->nr, sizeof(q->queue[0]), diffnamecmp);
}
+static void diffcore_ignore_mode_change(struct diff_options *diffopt)
+{
+ int i;
+ struct diff_queue_struct *q = &diff_queued_diff;
+ struct diff_queue_struct outq;
+ DIFF_QUEUE_CLEAR(&outq);
+
+ for (i = 0; i < q->nr; i++) {
+ struct diff_filepair *p = q->queue[i];
+
+ if (DIFF_FILE_VALID(p->one) &&
+ DIFF_FILE_VALID(p->two) &&
+ (p->one->sha1_valid && p->two->sha1_valid) &&
+ !hashcmp(p->one->sha1, p->two->sha1))
+ diff_free_filepair(p); /* skip this */
+ else
+ diff_q(&outq, p);
+ }
+ free(q->queue);
+ *q = outq;
+}
+
void diffcore_std(struct diff_options *options)
{
if (options->skip_stat_unmatch)
diffcore_skip_stat_unmatch(options);
+ if (DIFF_OPT_TST(options, IGNORE_MODE_CHANGE))
+ diffcore_ignore_mode_change(options);
if (!options->found_follow) {
/* See try_to_follow_renames() in tree-diff.c */
if (options->break_opt != -1)
diff --git a/diff.h b/diff.h
index 0083d92438..9f10f72e0a 100644
--- a/diff.h
+++ b/diff.h
@@ -78,6 +78,7 @@ typedef struct strbuf *(*diff_prefix_fn_t)(struct diff_options *opt, void *data)
#define DIFF_OPT_IGNORE_UNTRACKED_IN_SUBMODULES (1 << 25)
#define DIFF_OPT_IGNORE_DIRTY_SUBMODULES (1 << 26)
#define DIFF_OPT_OVERRIDE_SUBMODULE_CONFIG (1 << 27)
+#define DIFF_OPT_IGNORE_MODE_CHANGE (1 << 30)
#define DIFF_OPT_TST(opts, flag) ((opts)->flags & DIFF_OPT_##flag)
#define DIFF_OPT_SET(opts, flag) ((opts)->flags |= DIFF_OPT_##flag)