From: Erik Faye-Lund Date: Mon, 7 May 2012 19:23:13 +0000 (+0200) Subject: clone: fix progress-regression X-Git-Tag: v1.7.10.3~20^2^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=481ed2360295f6f5cea43aabb138eaae52539c1e;p=git clone: fix progress-regression In 5bd631b3 ("clone: support multiple levels of verbosity"), the default behavior to show progress of the implicit checkout in the clone-command regressed so that progress was only shown if the verbose-option was specified. Fix this by making option_verbosity == 0 output progress as well. Signed-off-by: Erik Faye-Lund Signed-off-by: Junio C Hamano --- diff --git a/builtin/clone.c b/builtin/clone.c index 5f20082d6d..87f2657171 100644 --- a/builtin/clone.c +++ b/builtin/clone.c @@ -732,7 +732,7 @@ int cmd_clone(int argc, const char **argv, const char *prefix) opts.update = 1; opts.merge = 1; opts.fn = oneway_merge; - opts.verbose_update = (option_verbosity > 0); + opts.verbose_update = (option_verbosity >= 0); opts.src_index = &the_index; opts.dst_index = &the_index;