Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'include/git2/blame.h')
-rw-r--r--include/git2/blame.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/include/git2/blame.h b/include/git2/blame.h
index 84bb7f94c..f33a38933 100644
--- a/include/git2/blame.h
+++ b/include/git2/blame.h
@@ -9,6 +9,7 @@
#define INCLUDE_git_blame_h__
#include "common.h"
+#include "diff.h"
#include "oid.h"
/**
@@ -52,6 +53,9 @@ typedef enum {
* `GIT_BLAME_OPTIONS_INIT` macro:
* git_blame_options opts = GIT_BLAME_OPTIONS_INIT;
*
+ *- `find_options` specifies what strategies should be used for
+ * rename detection. The default is rename with threshold
+ * heuristics.
* - `flags` is a combination of the `git_blame_flag_t` values above.
* - `min_match_characters` is the lower bound on the number of alphanumeric
* characters that must be detected as moving/copying within a file for it to
@@ -70,6 +74,8 @@ typedef enum {
typedef struct git_blame_options {
unsigned int version;
+ git_diff_find_options find_options;
+
uint32_t flags;
uint16_t min_match_characters;
git_oid newest_commit;
@@ -78,8 +84,12 @@ typedef struct git_blame_options {
size_t max_line;
} git_blame_options;
+#define GIT_BLAME_DIFF_FIND_OPTIONS_INIT {GIT_DIFF_FIND_OPTIONS_VERSION, \
+ GIT_DIFF_FIND_RENAMES }
+
#define GIT_BLAME_OPTIONS_VERSION 1
-#define GIT_BLAME_OPTIONS_INIT {GIT_BLAME_OPTIONS_VERSION}
+#define GIT_BLAME_OPTIONS_INIT {GIT_BLAME_OPTIONS_VERSION, \
+ GIT_BLAME_DIFF_FIND_OPTIONS_INIT }
/**
* Initializes a `git_blame_options` with default values. Equivalent to