@@ -17,13 +17,13 @@ Pip supports installing packages from a :ref:`Git repository <pip:vcs support>`
17
17
18
18
.. code ::
19
19
20
- git+https://gitprovider.com/user/project.git@{version}#egg={package-name}
20
+ git+https://gitprovider.com/user/project.git@{version}
21
21
22
22
Or if your repository is private:
23
23
24
24
.. code ::
25
25
26
- git+https://{token}@gitprovider.com/user/project.git@{version}#egg={package-name}
26
+ git+https://{token}@gitprovider.com/user/project.git@{version}
27
27
28
28
Where ``version `` can be a tag, a branch, or a commit.
29
29
And ``token `` is a personal access token with read only permissions from your provider.
@@ -50,7 +50,7 @@ URI example:
50
50
51
51
.. code ::
52
52
53
- git+https://${GITHUB_TOKEN}@github.com/user/project.git@{version}#egg={package-name}
53
+ git+https://${GITHUB_TOKEN}@github.com/user/project.git@{version}
54
54
55
55
.. warning ::
56
56
@@ -70,7 +70,7 @@ URI example:
70
70
71
71
.. code ::
72
72
73
- git+https://${GITLAB_TOKEN_USER}:${GITLAB_TOKEN}@gitlab.com/user/project.git@{version}#egg={package-name}
73
+ git+https://${GITLAB_TOKEN_USER}:${GITLAB_TOKEN}@gitlab.com/user/project.git@{version}
74
74
75
75
Here ``GITLAB_TOKEN_USER `` is the user from the deploy token you created, not your GitLab user.
76
76
@@ -85,7 +85,7 @@ URI example:
85
85
86
86
.. code ::
87
87
88
- git+https://${BITBUCKET_USER}:${BITBUCKET_APP_PASSWORD}@bitbucket.org/user/project.git@{version}#egg={package-name} '
88
+ git+https://${BITBUCKET_USER}:${BITBUCKET_APP_PASSWORD}@bitbucket.org/user/project.git@{version}'
89
89
90
90
Here ``BITBUCKET_USER `` is your Bitbucket user.
91
91
0 commit comments