diff options
author | Yakov Lerner <iler.ml@gmail.com> | 2006-07-11 21:02:00 +0000 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-11 12:39:09 -0700 |
commit | c3f17061be95de3498449a548e93883aebff23d6 (patch) | |
tree | 900319cfdbec50f38d590b64780434ad1db0941e /Documentation | |
parent | 8ff99e7417fcbff67d2c31445671fa97e44c95e7 (diff) | |
download | git-c3f17061be95de3498449a548e93883aebff23d6.tar.gz git-c3f17061be95de3498449a548e93883aebff23d6.tar.xz |
Mention the [user@] part in documentation of ssh:// urls.
Signed-off-by: Yakov Lerner <iler.ml@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/urls.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/urls.txt b/Documentation/urls.txt index d60b37147..9abec806d 100644 --- a/Documentation/urls.txt +++ b/Documentation/urls.txt @@ -10,9 +10,9 @@ to name the remote repository: - https://host.xz/path/to/repo.git/ - git://host.xz/path/to/repo.git/ - git://host.xz/~user/path/to/repo.git/ -- ssh://host.xz/path/to/repo.git/ -- ssh://host.xz/~user/path/to/repo.git/ -- ssh://host.xz/~/path/to/repo.git +- ssh://[user@]host.xz/path/to/repo.git/ +- ssh://[user@]host.xz/~user/path/to/repo.git/ +- ssh://[user@]host.xz/~/path/to/repo.git =============================================================== SSH Is the default transport protocol and also supports an |