Skip to content
This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Commit 302af64

Browse files
committed
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
2 parents 4abe87c + 8f63da1 commit 302af64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builtin/clone.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ static int checkout(void)
569569
opts.update = 1;
570570
opts.merge = 1;
571571
opts.fn = oneway_merge;
572-
opts.verbose_update = (option_verbosity > 0);
572+
opts.verbose_update = (option_verbosity >= 0);
573573
opts.src_index = &the_index;
574574
opts.dst_index = &the_index;
575575

0 commit comments

Comments
 (0)