Skip to content

Commit

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

0 comments on commit 2af87aa

Please sign in to comment.