diff options
author | Jeff King <peff@peff.net> | 2007-12-03 07:58:37 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-12-03 07:58:37 +0100 |
commit | f714fb846b421c7d7addd4e1b706302ba272423d (patch) | |
tree | 47fa6db9a45314b8103167269b61087ba5636c39 /wt-status.c | |
parent | rename: Break filepairs with different types. (diff) | |
download | git-f714fb846b421c7d7addd4e1b706302ba272423d.tar.xz git-f714fb846b421c7d7addd4e1b706302ba272423d.zip |
Enable rewrite as well as rename detection in git-status
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | wt-status.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wt-status.c b/wt-status.c index 9a6ef4a89a..bf2fe8d237 100644 --- a/wt-status.c +++ b/wt-status.c @@ -231,6 +231,7 @@ static void wt_status_print_updated(struct wt_status *s) rev.diffopt.format_callback_data = s; rev.diffopt.detect_rename = 1; rev.diffopt.rename_limit = 100; + rev.diffopt.break_opt = 0; wt_read_cache(s); run_diff_index(&rev, 1); } |