diff options
author | Anton Altaparmakov <aia21@cam.ac.uk> | 2005-05-05 12:30:25 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-05-05 07:36:54 -0700 |
commit | 2af87aae7801c3de62d6fca709ccb723d99a9452 (patch) | |
tree | 842527b498b565d4a83d33522c52892d993b91af | |
parent | git-pull-script: do the diffstat also for the fast-forward case (diff) | |
download | tgif-2af87aae7801c3de62d6fca709ccb723d99a9452.tar.xz |
[PATCH] Fix git rpull.
This fixes rpull.c to call git-rpush rather than rpush which no longer
exists after the Big Rename(TM)...
Signed-off-by: Anton Altaparmakov <aia21@cantab.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | rpull.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ int main(int argc, char **argv) commit_id = argv[arg]; url = argv[arg + 1]; - if (setup_connection(&fd_in, &fd_out, "rpush", url, arg, argv + 1)) + if (setup_connection(&fd_in, &fd_out, "git-rpush", url, arg, argv + 1)) return 1; if (pull(commit_id)) |