diff options
author | Jeff King <peff@peff.net> | 2007-12-02 22:58:37 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-12-02 22:58:37 -0800 |
commit | f714fb846b421c7d7addd4e1b706302ba272423d (patch) | |
tree | 47fa6db9a45314b8103167269b61087ba5636c39 | |
parent | b45563a229f5150271837cf487a91ddd8224fbd3 (diff) | |
download | git-f714fb846b421c7d7addd4e1b706302ba272423d.tar.gz git-f714fb846b421c7d7addd4e1b706302ba272423d.tar.xz |
Enable rewrite as well as rename detection in git-status
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-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 9a6ef4a89..bf2fe8d23 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); } |