Re: [PATCH 04/23] midx: add 'write' subcommand and basic wiring

2018-06-07 Thread Duy Nguyen
On Thu, Jun 7, 2018 at 4:03 PM, Derrick Stolee wrote: > diff --git a/builtin/midx.c b/builtin/midx.c > index 59ea92178f..dc0a5acd3f 100644 > --- a/builtin/midx.c > +++ b/builtin/midx.c > @@ -3,9 +3,10 @@ > #include "config.h" > #include "git-compat-util.h" > #include "parse-options.h" >

[PATCH 04/23] midx: add 'write' subcommand and basic wiring

2018-06-07 Thread Derrick Stolee
In anticipation of writing multi-pack-indexes (MIDX files), add a 'git midx write' subcommand and send the options to a write_midx_file() method. Also create a basic test file that tests the 'write' subcommand. Signed-off-by: Derrick Stolee --- Documentation/git-midx.txt | 22