summaryrefslogtreecommitdiff
path: root/wt-status.h
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2018-05-30 14:04:07 +0900
committerLibravatar Junio C Hamano <gitster@pobox.com>2018-05-30 14:04:07 +0900
commit5da4847dccdf8df26f0cfbcc278034a62dbc97e0 (patch)
tree28772809fb164c3368790a7557dc84c72fcb254e /wt-status.h
parentMerge branch 'js/use-bug-macro' (diff)
parentadd status config and command line options for rename detection (diff)
downloadtgif-5da4847dccdf8df26f0cfbcc278034a62dbc97e0.tar.xz
Merge branch 'bp/status-rename-config'
"git status" learned to honor a new status.renames configuration to skip rename detection, which could be useful for those who want to do so without disabling the default rename detection done by the "git diff" command. * bp/status-rename-config: add status config and command line options for rename detection
Diffstat (limited to 'wt-status.h')
-rw-r--r--wt-status.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/wt-status.h b/wt-status.h
index 430770b854..1673d146fa 100644
--- a/wt-status.h
+++ b/wt-status.h
@@ -89,7 +89,9 @@ struct wt_status {
int show_stash;
int hints;
enum ahead_behind_flags ahead_behind_flags;
-
+ int detect_rename;
+ int rename_score;
+ int rename_limit;
enum wt_status_format status_format;
unsigned char sha1_commit[GIT_MAX_RAWSZ]; /* when not Initial */