diff options
author | Daniel Barkalow <barkalow@iabervon.org> | 2007-10-29 22:03:39 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-02 22:40:44 -0700 |
commit | 96249c04c07f00485a3ed1052ff10b27ab147fc5 (patch) | |
tree | 47fc355fbf8eb14f877a2c93f19dfe511d68feb4 /git.c | |
parent | 18f7c51cf921f7db021e012499456120f3f095a9 (diff) | |
download | git-96249c04c07f00485a3ed1052ff10b27ab147fc5.tar.gz git-96249c04c07f00485a3ed1052ff10b27ab147fc5.tar.xz |
Build-in send-pack, with an API for other programs to call.
Also marks some more things as const, as needed.
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git.c')
-rw-r--r-- | git.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -348,6 +348,7 @@ static void handle_internal_command(int argc, const char **argv) { "revert", cmd_revert, RUN_SETUP | NEED_WORK_TREE }, { "rm", cmd_rm, RUN_SETUP | NEED_WORK_TREE }, { "runstatus", cmd_runstatus, RUN_SETUP | NEED_WORK_TREE }, + { "send-pack", cmd_send_pack, RUN_SETUP }, { "shortlog", cmd_shortlog, RUN_SETUP | USE_PAGER }, { "show-branch", cmd_show_branch, RUN_SETUP }, { "show", cmd_show, RUN_SETUP | USE_PAGER }, |