diff options
Diffstat (limited to 'include/git2/diff.h')
-rw-r--r-- | include/git2/diff.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/git2/diff.h b/include/git2/diff.h index 172aa118b..31f6e0591 100644 --- a/include/git2/diff.h +++ b/include/git2/diff.h @@ -441,6 +441,8 @@ typedef enum { GIT_DIFF_FIND_IGNORE_WHITESPACE = (1 << 12), /** measure similarity including all data */ GIT_DIFF_FIND_DONT_IGNORE_WHITESPACE = (1 << 13), + /** measure similarity only by comparing SHAs (fast and cheap) */ + GIT_DIFF_FIND_EXACT_MATCH_ONLY = (1 << 14), } git_diff_find_t; /** |