summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorWilliam Edwards <wedwards@cyberfusion.nl>2023-03-05 12:10:50 +0100
committerWilliam Edwards <wedwards@cyberfusion.nl>2023-03-05 12:10:53 +0100
commit5296a234c88e52cebe888cf534609477bbbc18f4 (patch)
treee893de5e9311fc5813c6b2d710d5cf2574eb6263 /docs
parent4b14e7cd7c386839718e88c98b31137448d31e63 (diff)
downloadpip-5296a234c88e52cebe888cf534609477bbbc18f4.tar.gz
Add SSH username to Git over SSH documentation example
``` (testvenv) williams-air:testvenv williamedwards$ pip3 install 'foobar @ git+ssh://example.com/foobar' fatal: '/foobar' does not appear to be a git repository fatal: Could not read from remote repository. (testvenv) williams-air:testvenv williamedwards$ pip3 install 'foobar @ git+ssh://git@example.com/foobar' ... Successfully installed foobar-0.0 ```
Diffstat (limited to 'docs')
-rw-r--r--docs/html/topics/vcs-support.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/topics/vcs-support.md b/docs/html/topics/vcs-support.md
index faa0633cc..465d5ecb7 100644
--- a/docs/html/topics/vcs-support.md
+++ b/docs/html/topics/vcs-support.md
@@ -18,7 +18,7 @@ The supported schemes are `git+file`, `git+https`, `git+ssh`, `git+http`,
`git+git` and `git`. Here are some of the supported forms:
```none
-MyProject @ git+ssh://git.example.com/MyProject
+MyProject @ git+ssh://git@git.example.com/MyProject
MyProject @ git+file:///home/user/projects/MyProject
MyProject @ git+https://git.example.com/MyProject
```