From a989001a0ee8e330393cd266e0bd46c2cedbfe52 Mon Sep 17 00:00:00 2001 From: David Beitey Date: Mon, 10 May 2021 00:31:17 +0000 Subject: [PATCH] Add #egg fragment to URL in VCS docs --- docs/basics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basics.rst b/docs/basics.rst index 56e9c5350a..b14d16ced8 100644 --- a/docs/basics.rst +++ b/docs/basics.rst @@ -371,7 +371,7 @@ You can install packages with pipenv from git and other version control systems +:////@#egg= -The only optional section is the ``@`` section. When using git over SSH, you may use the shorthand vcs and scheme alias ``git+git@:/@#``. Note that this is translated to ``git+ssh://git@`` when parsed. +The only optional section is the ``@`` section. When using git over SSH, you may use the shorthand vcs and scheme alias ``git+git@:/@#egg=``. Note that this is translated to ``git+ssh://git@`` when parsed. Note that it is **strongly recommended** that you install any version-controlled dependencies in editable mode, using ``pipenv install -e``, in order to ensure that dependency resolution can be performed with an up to date copy of the repository each time it is performed, and that it includes all known dependencies.