diff options
| author | Junio C Hamano <gitster@pobox.com> | 2008-05-14 12:37:28 -0700 | 
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2008-05-14 12:37:28 -0700 | 
| commit | adf59ec127f447aa83c84f9dbe2ae4e6417f3760 (patch) | |
| tree | 6f18778312b98ea48205c127c1a07e967dc4c77b /wt-status.c | |
| parent | 0bdf93cbf0afd568384f237378ba368e751a2f0f (diff) | |
| parent | b8960bbe7bdfc0b232462f916ee8151c83afd16f (diff) | |
| download | git-adf59ec127f447aa83c84f9dbe2ae4e6417f3760.tar.gz | |
Merge branch 'jk/renamelimit' (early part)
* 'jk/renamelimit' (early part):
  diff: make "too many files" rename warning optional
  bump rename limit defaults
  add merge.renamelimit config option
Diffstat (limited to 'wt-status.c')
| -rw-r--r-- | wt-status.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/wt-status.c b/wt-status.c index 532b4ea2c1..a44c543375 100644 --- a/wt-status.c +++ b/wt-status.c @@ -206,7 +206,7 @@ static void wt_status_print_updated(struct wt_status *s)  	rev.diffopt.format_callback = wt_status_print_updated_cb;  	rev.diffopt.format_callback_data = s;  	rev.diffopt.detect_rename = 1; -	rev.diffopt.rename_limit = 100; +	rev.diffopt.rename_limit = 200;  	rev.diffopt.break_opt = 0;  	run_diff_index(&rev, 1);  } | 
