-git-rpull(1)
-============
+git-ssh-pull(1)
+===============
v0.1, May 2005
NAME
----
-git-rpull - Pulls from a remote repository over ssh connection
+git-ssh-pull - Pulls from a remote repository over ssh connection
SYNOPSIS
--------
-'git-rpull' [-c] [-t] [-a] [-d] [-v] [--recover] commit-id url
+'git-ssh-pull' [-c] [-t] [-a] [-d] [-v] [--recover] commit-id url
DESCRIPTION
-----------
-Pulls from a remote repository over ssh connection, invoking git-rpush on
-the other end.
+Pulls from a remote repository over ssh connection, invoking git-ssh-push
+on the other end.
OPTIONS
-------
-git-rpush(1)
-============
+git-ssh-push(1)
+===============
v0.1, May 2005
NAME
----
-git-rpush - Helper "server-side" program used by git-rpull
+git-ssh-push - Helper "server-side" program used by git-ssh-pull
SYNOPSIS
--------
-'git-rpush'
+'git-ssh-push'
DESCRIPTION
-----------
-Helper "server-side" program used by git-rpull.
+Helper "server-side" program used by git-ssh-pull.
Author
link:git-tag-script.html[git-tag-script]::
An example script to create a tag object signed with GPG
-link:git-rpull.html[git-rpull]::
+link:git-ssh-pull.html[git-ssh-pull]::
Pulls from a remote repository over ssh connection
Interogators:
link:git-diff-helper.html[git-diff-helper]::
Generates patch format output for git-diff-*
-link:git-rpush.html[git-rpush]::
- Helper "server-side" program used by git-rpull
+link:git-ssh-push.html[git-ssh-push]::
+ Helper "server-side" program used by git-ssh-pull
git-checkout-cache git-diff-tree git-rev-tree git-ls-files \
git-check-files git-ls-tree git-merge-base git-merge-cache \
git-unpack-file git-export git-diff-cache git-convert-cache \
- git-http-pull git-rpush git-rpull git-rev-list git-mktag \
+ git-http-pull git-ssh-push git-ssh-pull git-rev-list git-mktag \
git-diff-helper git-tar-tree git-local-pull git-write-blob \
git-get-tar-commit-id git-mkdelta git-apply git-stripspace
git-convert-cache: convert-cache.c
git-http-pull: http-pull.c pull.c
git-local-pull: local-pull.c pull.c
-git-rpush: rsh.c
-git-rpull: rsh.c pull.c
+git-ssh-push: rsh.c
+git-ssh-pull: rsh.c pull.c
git-rev-list: rev-list.c
git-mktag: mktag.c
git-diff-helper: diff-helper.c
arg++;
}
if (argc < arg + 2) {
- usage("git-rpull [-c] [-t] [-a] [-v] [-d] [--recover] commit-id url");
+ usage("git-ssh-pull [-c] [-t] [-a] [-v] [-d] [--recover] commit-id url");
return 1;
}
commit_id = argv[arg];
url = argv[arg + 1];
- if (setup_connection(&fd_in, &fd_out, "git-rpush", url, arg, argv + 1))
+ if (setup_connection(&fd_in, &fd_out, "git-ssh-push", url, arg, argv + 1))
return 1;
if (get_version())
do {
size = read(fd_in, sha1 + posn, 20 - posn);
if (size < 0) {
- perror("git-rpush: read ");
+ perror("git-ssh-push: read ");
return -1;
}
if (!size)
buf = map_sha1_file(sha1, &objsize);
if (!buf) {
- fprintf(stderr, "git-rpush: could not find %s\n",
+ fprintf(stderr, "git-ssh-push: could not find %s\n",
sha1_to_hex(sha1));
remote = -1;
}
size = write(fd_out, buf + posn, objsize - posn);
if (size <= 0) {
if (!size) {
- fprintf(stderr, "git-rpush: write closed");
+ fprintf(stderr, "git-ssh-push: write closed");
} else {
- perror("git-rpush: write ");
+ perror("git-ssh-push: write ");
}
return -1;
}
retval = read(fd_in, &type, 1);
if (retval < 1) {
if (retval < 0)
- perror("rpush: read ");
+ perror("git-ssh-push: read ");
return;
}
if (type == 'v' && serve_version(fd_in, fd_out))
arg++;
}
if (argc < arg + 2) {
- usage("git-rpush [-c] [-t] [-a] commit-id url");
+ usage("git-ssh-push [-c] [-t] [-a] commit-id url");
return 1;
}
commit_id = argv[arg];
url = argv[arg + 1];
- if (setup_connection(&fd_in, &fd_out, "git-rpull", url, arg, argv + 1))
+ if (setup_connection(&fd_in, &fd_out, "git-ssh-pull", url, arg, argv + 1))
return 1;
service(fd_in, fd_out);