diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-10-05 21:35:55 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-10-05 21:35:55 +0200 |
commit | 9e3e789e70701beb25b3135d292edfbc99035701 (patch) | |
tree | f23f4b4b4d23f348762c774ef038b55a5b01cd51 /transport.c | |
parent | Merge branch 'jk/filter-branch-require-clean-work-tree' (diff) | |
parent | Teach progress eye-candy to fetch_refs_from_bundle() (diff) | |
download | git-9e3e789e70701beb25b3135d292edfbc99035701.tar.xz git-9e3e789e70701beb25b3135d292edfbc99035701.zip |
Merge branch 'jc/maint-bundle-too-quiet'
* jc/maint-bundle-too-quiet:
Teach progress eye-candy to fetch_refs_from_bundle()
Diffstat (limited to 'transport.c')
-rw-r--r-- | transport.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/transport.c b/transport.c index fa279d531f..e1940615e2 100644 --- a/transport.c +++ b/transport.c @@ -432,7 +432,8 @@ static int fetch_refs_from_bundle(struct transport *transport, int nr_heads, struct ref **to_fetch) { struct bundle_transport_data *data = transport->data; - return unbundle(&data->header, data->fd); + return unbundle(&data->header, data->fd, + transport->progress ? BUNDLE_VERBOSE : 0); } static int close_bundle(struct transport *transport) |