Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx> --- daemon.c | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/daemon.c b/daemon.c index e22a2b7..58794b7 100644 --- a/daemon.c +++ b/daemon.c @@ -356,6 +356,12 @@ static int upload_archive(void) return run_service_command(argv); } +static int upload_narrow_base(void) +{ + static const char *argv[] = { "upload-narrow-base", ".", NULL }; + return run_service_command(argv); +} + static int receive_pack(void) { static const char *argv[] = { "receive-pack", ".", NULL }; @@ -364,6 +370,7 @@ static int receive_pack(void) static struct daemon_service daemon_service[] = { { "upload-archive", "uploadarch", upload_archive, 0, 1 }, + { "upload-narrow-base", "narrowbase", upload_narrow_base, 0, 1 }, { "upload-pack", "uploadpack", upload_pack, 1, 1 }, { "receive-pack", "receivepack", receive_pack, 0, 1 }, }; -- 1.7.1.rc1.69.g24c2f7 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html