Skip to content

Commit 5296a23

Browse files
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://[email protected]/foobar' ... Successfully installed foobar-0.0 ```
1 parent 4b14e7c commit 5296a23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/html/topics/vcs-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The supported schemes are `git+file`, `git+https`, `git+ssh`, `git+http`,
1818
`git+git` and `git`. Here are some of the supported forms:
1919

2020
```none
21-
MyProject @ git+ssh://git.example.com/MyProject
21+
MyProject @ git+ssh://git@git.example.com/MyProject
2222
MyProject @ git+file:///home/user/projects/MyProject
2323
MyProject @ git+https://git.example.com/MyProject
2424
```

0 commit comments

Comments
 (0)