diff options
| author | Russell Belfer <rb@github.com> | 2013-08-09 09:35:23 -0700 |
|---|---|---|
| committer | Russell Belfer <rb@github.com> | 2013-08-09 09:35:23 -0700 |
| commit | fbb6c0c84c65d5e36ad552040897cfbde83b59b2 (patch) | |
| tree | a6f625fcca0b8dcce7953bfdb781254bb4c5dac9 /include/git2 | |
| parent | 33d532dcfacbc0d936341848efc60dd55956ec10 (diff) | |
| parent | e38f0d69aba011d02ba5cabc648fee6c6f4dcc29 (diff) | |
| download | libgit2-fbb6c0c84c65d5e36ad552040897cfbde83b59b2.tar.gz | |
Merge pull request #1764 from ethomson/status_renames_from_rewrites
Add rename from rewrites to status
Diffstat (limited to 'include/git2')
| -rw-r--r-- | include/git2/status.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/git2/status.h b/include/git2/status.h index 2f7c06726..aa934d96b 100644 --- a/include/git2/status.h +++ b/include/git2/status.h @@ -107,7 +107,7 @@ typedef enum { * - GIT_STATUS_OPT_RENAMES_HEAD_TO_INDEX indicates that rename detection * should be processed between the head and the index and enables * the GIT_STATUS_INDEX_RENAMED as a possible status flag. - * - GIT_STATUS_OPT_RENAMES_INDEX_TO_WORKDIR indicates tha rename + * - GIT_STATUS_OPT_RENAMES_INDEX_TO_WORKDIR indicates that rename * detection should be run between the index and the working directory * and enabled GIT_STATUS_WT_RENAMED as a possible status flag. * - GIT_STATUS_OPT_SORT_CASE_SENSITIVELY overrides the native case @@ -116,6 +116,8 @@ typedef enum { * - GIT_STATUS_OPT_SORT_CASE_INSENSITIVELY overrides the native case * sensitivity for the file system and forces the output to be in * case-insensitive order + * - GIT_STATUS_OPT_RENAMES_FROM_REWRITES indicates that rename detection + * should include rewritten files * * Calling `git_status_foreach()` is like calling the extended version * with: GIT_STATUS_OPT_INCLUDE_IGNORED, GIT_STATUS_OPT_INCLUDE_UNTRACKED, @@ -134,6 +136,7 @@ typedef enum { GIT_STATUS_OPT_RENAMES_INDEX_TO_WORKDIR = (1u << 8), GIT_STATUS_OPT_SORT_CASE_SENSITIVELY = (1u << 9), GIT_STATUS_OPT_SORT_CASE_INSENSITIVELY = (1u << 10), + GIT_STATUS_OPT_RENAMES_FROM_REWRITES = (1u << 11), } git_status_opt_t; #define GIT_STATUS_OPT_DEFAULTS \ |
