]> git.ipfire.org Git - thirdparty/git.git/commitdiff
[PATCH] rename git-rpush and git-rpull to git-ssh-push and git-ssh-pull
authorJunio C Hamano <junkio@cox.net>
Sun, 5 Jun 2005 22:41:05 +0000 (15:41 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Sun, 5 Jun 2005 23:12:27 +0000 (16:12 -0700)
In preparation for 1.0 release, this makes the command names
consistent with others in git-*-pull family.

Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Documentation/git-ssh-pull.txt [moved from Documentation/git-rpull.txt with 80% similarity]
Documentation/git-ssh-push.txt [moved from Documentation/git-rpush.txt with 64% similarity]
Documentation/git.txt
Makefile
ssh-pull.c [moved from rpull.c with 90% similarity]
ssh-push.c [moved from rpush.c with 83% similarity]

similarity index 80%
rename from Documentation/git-rpull.txt
rename to Documentation/git-ssh-pull.txt
index a6c40ae97ca2414760f7ff9e15ed5a7888b36e74..a0dade00af24d136eba436987eef083cb7cbc75e 100644 (file)
@@ -1,21 +1,21 @@
-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
 -------
similarity index 64%
rename from Documentation/git-rpush.txt
rename to Documentation/git-ssh-push.txt
index 1c1cbab1cfda6ec8807bc265a9b73bdf7905b915..4fe850869722d9aa5aaa5f6bb7f66a92592419eb 100644 (file)
@@ -1,19 +1,19 @@
-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
index 7edbcc38af21f9e062e5f992964ec4ffe2016ce0..971012bf830c23cd9267da881cc2d08ad4468260 100644 (file)
@@ -148,7 +148,7 @@ link:git-resolve-script.html[git-resolve-script]::
 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:
@@ -156,8 +156,8 @@ 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
 
 
 
index c03b4b6bdf2db085fa5bcab7e2f8c61a3f544c74..fff5a6a4bcb29528c3f7b2419dc21481ebddeeea 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,7 @@ PROG=   git-update-cache git-diff-files git-init-db git-write-tree \
        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
 
@@ -105,8 +105,8 @@ git-diff-cache: diff-cache.c
 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
similarity index 90%
rename from rpull.c
rename to ssh-pull.c
index a332fba23b0eb535ffacbdd68da80e1eebb62824..3556d89a33cc68e8c369f2189bf068dc3ae3a96d 100644 (file)
--- a/rpull.c
@@ -64,13 +64,13 @@ int main(int argc, char **argv)
                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())
similarity index 83%
rename from rpush.c
rename to ssh-push.c
index bd381ac9d1787dc979b1eba5bd72c1fd644a094b..9994ea7fc098468976c4a95daf972f796d88793b 100644 (file)
--- a/rpush.c
@@ -16,7 +16,7 @@ int serve_object(int fd_in, int fd_out) {
        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)
@@ -30,7 +30,7 @@ int serve_object(int fd_in, int fd_out) {
        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;
        }
@@ -45,9 +45,9 @@ int serve_object(int fd_in, int fd_out) {
                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;
                }
@@ -71,7 +71,7 @@ void service(int fd_in, int fd_out) {
                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))
@@ -91,12 +91,12 @@ int main(int argc, char **argv)
                 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);