summaryrefslogtreecommitdiff
path: root/wt-status.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2007-12-03 06:58:37 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-12-03 06:58:37 (GMT)
commitf714fb846b421c7d7addd4e1b706302ba272423d (patch)
tree47fa6db9a45314b8103167269b61087ba5636c39 /wt-status.c
parentb45563a229f5150271837cf487a91ddd8224fbd3 (diff)
downloadgit-f714fb846b421c7d7addd4e1b706302ba272423d.zip
git-f714fb846b421c7d7addd4e1b706302ba272423d.tar.gz
git-f714fb846b421c7d7addd4e1b706302ba272423d.tar.bz2
Enable rewrite as well as rename detection in git-status
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wt-status.c')
-rw-r--r--wt-status.c1
1 files changed, 1 insertions, 0 deletions
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 @@ 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);
}