1
0
mirror of https://github.com/git/git.git synced 2024-09-28 20:51:42 +02:00
git/midx.c
Derrick Stolee a340773026 multi-pack-index: add 'write' verb
In anticipation of writing multi-pack-indexes, add a skeleton
'git multi-pack-index write' subcommand and send the options to a
write_midx_file() method. Also create a skeleton test script that
tests the 'write' subcommand.

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2018-07-20 11:27:28 -07:00

8 lines
97 B
C

#include "cache.h"
#include "midx.h"
int write_midx_file(const char *object_dir)
{
return 0;
}