diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-09-09 01:27:08 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-09-09 09:27:45 -0700 |
commit | be5908aed35d1c129f1ea38913b230ee1927361b (patch) | |
tree | 74452643d9c35a663c91848a28a7ca4f5b7f0c20 /git.c | |
parent | 90b4a71c493bf24f11b5edee8a519110624a6bea (diff) | |
download | git-be5908aed35d1c129f1ea38913b230ee1927361b.tar.gz git-be5908aed35d1c129f1ea38913b230ee1927361b.tar.xz |
receive-pack: make it a builtin
It is a good thing to do in general, but more importantly, transport
routines can only be used by built-ins, which is what I'll be adding next.
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
@@ -328,6 +328,7 @@ static void handle_internal_command(int argc, const char **argv) { "prune-packed", cmd_prune_packed, RUN_SETUP }, { "push", cmd_push, RUN_SETUP }, { "read-tree", cmd_read_tree, RUN_SETUP }, + { "receive-pack", cmd_receive_pack }, { "reflog", cmd_reflog, RUN_SETUP }, { "remote", cmd_remote, RUN_SETUP }, { "repo-config", cmd_config }, |