Re: [PATCH v3 3/5] repack: add --sparse and pass to pack-objects

2019-06-24 Thread Derrick Stolee
On 6/24/2019 8:07 AM, Nathaniel Filardo wrote: > The sparse connectivity algorithm saves a whole lot of time when there > are UNINTERESTING trees around. Neat! Any chance for some example performance stats? > --- Looks like you forgot your Signed-off-by here. > +# repack --sparse invokes pack-o

[PATCH v3 3/5] repack: add --sparse and pass to pack-objects

2019-06-24 Thread Nathaniel Filardo
The sparse connectivity algorithm saves a whole lot of time when there are UNINTERESTING trees around. --- Documentation/git-repack.txt | 4 builtin/repack.c | 5 + t/t5322-pack-objects-sparse.sh | 6 ++ 3 files changed, 15 insertions(+) diff --git a/Documentation/git