Re: [PATCH v5 08/10] sha1_file: support lazily fetching missing objects

2017-12-05 Thread Jeff Hostetler
On 12/2/2017 1:29 PM, Christian Couder wrote: On Tue, Nov 21, 2017 at 10:07 PM, Jeff Hostetler wrote: From: Jonathan Tan [...] int sha1_object_info_extended(const unsigned char *sha1, struct object_info *oi, unsigned flags) { [...]

Re: [PATCH v5 08/10] sha1_file: support lazily fetching missing objects

2017-12-02 Thread Christian Couder
On Tue, Nov 21, 2017 at 10:07 PM, Jeff Hostetler wrote: > From: Jonathan Tan > diff --git a/sha1_file.c b/sha1_file.c > index 10c3a00..fc7718a 100644 > --- a/sha1_file.c > +++ b/sha1_file.c > @@ -29,6 +29,7 @@ > #include "mergesort.h" >

[PATCH v5 08/10] sha1_file: support lazily fetching missing objects

2017-11-21 Thread Jeff Hostetler
From: Jonathan Tan Teach sha1_file to fetch objects from the remote configured in extensions.partialclone whenever an object is requested but missing. The fetching of objects can be suppressed through a global variable. This is used by fsck and index-pack. However, by