summaryrefslogtreecommitdiff
path: root/diff.h
diff options
context:
space:
mode:
authorMichał Kępień <michal@isc.org>2020-10-20 06:48:09 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-10-20 19:53:26 (GMT)
commit296d4a94e7231a1d57356889f51bff57a1a3c5a1 (patch)
tree85fa1fa7d7ed82a83298e1c5a26071015e175684 /diff.h
parentec7967cfafd5844e33afbc1e6fb8ba1b9e5b111b (diff)
downloadgit-296d4a94e7231a1d57356889f51bff57a1a3c5a1.zip
git-296d4a94e7231a1d57356889f51bff57a1a3c5a1.tar.gz
git-296d4a94e7231a1d57356889f51bff57a1a3c5a1.tar.bz2
diff: add -I<regex> that ignores matching changes
Add a new diff option that enables ignoring changes whose all lines (changed, removed, and added) match a given regular expression. This is similar to the -I/--ignore-matching-lines option in standalone diff utilities and can be used e.g. to ignore changes which only affect code comments or to look for unrelated changes in commits containing a large number of automatically applied modifications (e.g. a tree-wide string replacement). The difference between -G/-S and the new -I option is that the latter filters output on a per-change basis. Use the 'ignore' field of xdchange_t for marking a change as ignored or not. Since the same field is used by --ignore-blank-lines, identical hunk emitting rules apply for --ignore-blank-lines and -I. These two options can also be used together in the same git invocation (they are complementary to each other). Rename xdl_mark_ignorable() to xdl_mark_ignorable_lines(), to indicate that it is logically a "sibling" of xdl_mark_ignorable_regex() rather than its "parent". Signed-off-by: Michał Kępień <michal@isc.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'diff.h')
-rw-r--r--diff.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/diff.h b/diff.h
index 9443dc1..976f83e 100644
--- a/diff.h
+++ b/diff.h
@@ -234,6 +234,10 @@ struct diff_options {
*/
const char *pickaxe;
+ /* -I<regex> */
+ regex_t **ignore_regex;
+ size_t ignore_regex_nr, ignore_regex_alloc;
+
const char *single_follow;
const char *a_prefix, *b_prefix;
const char *line_prefix;