Skip to content

Commit

Permalink
Merge branch 'ef/maint-clone-progress-fix'
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Junio C Hamano committed May 10, 2012
2 parents 4abe87c + 8f63da1 commit 302af64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/clone.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 302af64

Please sign in to comment.