From: Anton Altaparmakov Date: Thu, 5 May 2005 12:31:53 +0000 (+0100) Subject: [PATCH] Fix git rpush. X-Git-Tag: v0.99~643 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=5210372fe4a2e2ec73291434e86c07345524a276;p=git.git [PATCH] Fix git rpush. Following up from my fix to rpull, please also apply this, which fixes rpush.c to call git-rpull rather than rpull which no longer exists after the Big Rename(TM)... Signed-off-by: Anton Altaparmakov Signed-off-by: Linus Torvalds --- diff --git a/rpush.c b/rpush.c index 0293a1a46..265188467 100644 --- a/rpush.c +++ b/rpush.c @@ -61,7 +61,7 @@ int main(int argc, char **argv) } commit_id = argv[arg]; url = argv[arg + 1]; - if (setup_connection(&fd_in, &fd_out, "rpull", url, arg, argv + 1)) + if (setup_connection(&fd_in, &fd_out, "git-rpull", url, arg, argv + 1)) return 1; service(fd_in, fd_out);