From 5296a234c88e52cebe888cf534609477bbbc18f4 Mon Sep 17 00:00:00 2001 From: William Edwards Date: Sun, 5 Mar 2023 12:10:50 +0100 Subject: [PATCH 1/2] 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 ``` --- docs/html/topics/vcs-support.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/html/topics/vcs-support.md b/docs/html/topics/vcs-support.md index faa0633cc7f..465d5ecb78c 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 ``` From e0e54e3255f9bf1243db8027b46be16b433ff163 Mon Sep 17 00:00:00 2001 From: William Edwards Date: Sun, 5 Mar 2023 12:17:57 +0100 Subject: [PATCH 2/2] Add NEWS file --- news/11838.doc.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 news/11838.doc.rst diff --git a/news/11838.doc.rst b/news/11838.doc.rst new file mode 100644 index 00000000000..9630aa59885 --- /dev/null +++ b/news/11838.doc.rst @@ -0,0 +1 @@ +Add username to Git over SSH example.