commit | f714fb846b421c7d7addd4e1b706302ba272423d | [log] [tgz] |
---|---|---|
author | Jeff King <peff@peff.net> | Sun Dec 02 22:58:37 2007 -0800 |
committer | Junio C Hamano <gitster@pobox.com> | Sun Dec 02 22:58:37 2007 -0800 |
tree | 47fa6db9a45314b8103167269b61087ba5636c39 | |
parent | b45563a229f5150271837cf487a91ddd8224fbd3 [diff] [blame] |
Enable rewrite as well as rename detection in git-status Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff --git a/wt-status.c b/wt-status.c index 9a6ef4a..bf2fe8d 100644 --- a/wt-status.c +++ b/wt-status.c
@@ -231,6 +231,7 @@ 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); }