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

2019-03-12 Thread Dr N.W. Filardo
On 2019-03-12 13:47, Derrick Stolee wrote: On 3/12/2019 9:18 AM, Nathaniel Filardo wrote: The sparse connectivity algorithm saves a whole lot of time when there are UNINTERESTING trees around. Interesting! Do you have some performance numbers to include with this statement? Not UNINTERESTING

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

2019-03-12 Thread Derrick Stolee
On 3/12/2019 9:18 AM, Nathaniel Filardo wrote: > The sparse connectivity algorithm saves a whole lot of time when there > are UNINTERESTING trees around. Interesting! Do you have some performance numbers to include with this statement? > @@ -48,6 +49,10 @@ static int repack_config(const char *var,

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

2019-03-12 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 | 10 ++ 2 files changed, 14 insertions(+) diff --git a/Documentation/git-repack.txt b/Documentation/git-repack.t