Skip to content

Commit

Permalink
[PATCH] Fix git rpush.
Browse files Browse the repository at this point in the history
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 <aia21@cantab.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Anton Altaparmakov authored and Linus Torvalds committed May 5, 2005
1 parent 2af87aa commit 5210372
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpush.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5210372

Please sign in to comment.