diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-05-10 10:49:35 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-05-10 10:49:36 -0700 |
commit | 302af64cc8199d86bea577f1317c31daad9417d6 (patch) | |
tree | eaf3fea1a3faab6bb28f3c0f8dd58bba4c0f2bb3 /builtin | |
parent | Merge branch 'ah/maint-grep-double-init' (diff) | |
parent | Merge branch 'ef/maint-1.7.6-clone-progress-fix' into ef/maint-clone-progress... (diff) | |
download | tgif-302af64cc8199d86bea577f1317c31daad9417d6.tar.xz |
Merge branch 'ef/maint-clone-progress-fix'
Some time ago, "git clone" lost the progress output for its "checkout"
phase; when run without any "--quiet" option, it should give progress to
the lengthy operation.
By Erik Faye-Lund
* ef/maint-clone-progress-fix:
clone: fix progress-regression
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/clone.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/clone.c b/builtin/clone.c index bbd5c96237..a4d8d25ee3 100644 --- a/builtin/clone.c +++ b/builtin/clone.c @@ -569,7 +569,7 @@ static int checkout(void) 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; |