summaryrefslogtreecommitdiff
path: root/git.c
diff options
context:
space:
mode:
authorDerrick Stolee <stolee@gmail.com>2018-07-12 19:39:20 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-07-20 18:27:26 (GMT)
commit6a257f03ba9b86c744064d08df98db1847cf1722 (patch)
tree58bf3269078defab6bdb5ff7fea3d0a75b7aff04 /git.c
parente0d1bcf82590aea8ee007ab087772f1c82f6890b (diff)
downloadgit-6a257f03ba9b86c744064d08df98db1847cf1722.zip
git-6a257f03ba9b86c744064d08df98db1847cf1722.tar.gz
git-6a257f03ba9b86c744064d08df98db1847cf1722.tar.bz2
multi-pack-index: add builtin
This new 'git multi-pack-index' builtin will be the plumbing access for writing, reading, and checking multi-pack-index files. The initial implementation is a no-op. Signed-off-by: Derrick Stolee <dstolee@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git.c')
-rw-r--r--git.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/git.c b/git.c
index c2f48d5..a7509fa 100644
--- a/git.c
+++ b/git.c
@@ -505,6 +505,7 @@ static struct cmd_struct commands[] = {
{ "merge-tree", cmd_merge_tree, RUN_SETUP | NO_PARSEOPT },
{ "mktag", cmd_mktag, RUN_SETUP | NO_PARSEOPT },
{ "mktree", cmd_mktree, RUN_SETUP },
+ { "multi-pack-index", cmd_multi_pack_index, RUN_SETUP_GENTLY },
{ "mv", cmd_mv, RUN_SETUP | NEED_WORK_TREE },
{ "name-rev", cmd_name_rev, RUN_SETUP },
{ "notes", cmd_notes, RUN_SETUP },