From 9e1dd3c60818e78448abc9c35e5d62bff0df0297 Mon Sep 17 00:00:00 2001 From: mendy-lp <106614703+mendy-lp@users.noreply.github.com> Date: Sun, 17 Sep 2023 08:13:12 -0400 Subject: [PATCH] fix poetry add example to use git+https (#8438) --- docs/dependency-specification.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dependency-specification.md b/docs/dependency-specification.md index f14fd780e77..e3279a92c63 100644 --- a/docs/dependency-specification.md +++ b/docs/dependency-specification.md @@ -160,7 +160,7 @@ subdir_package = { git = "https://github.com/myorg/mypackage_with_subdirs.git", with the corresponding `add` call: ```bash -poetry add "https://github.com/myorg/mypackage_with_subdirs.git#subdirectory=subdir" +poetry add "git+https://github.com/myorg/mypackage_with_subdirs.git#subdirectory=subdir" ``` To use an SSH connection, for example in the case of private repositories, use the following example syntax: