@@ -15,7 +15,7 @@ Overview
1515
1616 git clone https://github.com/your-user-name/matplotlib.git
1717 cd matplotlib
18- git remote add upstream git ://github.com/matplotlib/matplotlib.git
18+ git remote add upstream https ://github.com/matplotlib/matplotlib.git
1919
2020In detail
2121=========
@@ -50,23 +50,18 @@ Linking your repository to the upstream repo
5050::
5151
5252 cd matplotlib
53- git remote add upstream git ://github.com/matplotlib/matplotlib.git
53+ git remote add upstream https ://github.com/matplotlib/matplotlib.git
5454
5555``upstream `` here is just the arbitrary name we're using to refer to the
5656main `Matplotlib `_ repository at `Matplotlib github `_.
5757
58- Note that we've used ``git:// `` for the URL rather than ``https:// `` or ``git@ ``. The
59- ``git:// `` URL is read only. This means that we can't accidentally
60- (or deliberately) write to the upstream repo, and we are only going to
61- use it to merge into our own code.
62-
6358Just for your own satisfaction, show yourself that you now have a new
6459'remote', with ``git remote -v show ``, giving you something like:
6560
6661.. code-block :: none
6762
68- upstream git ://github.com/matplotlib/matplotlib.git (fetch)
69- upstream git ://github.com/matplotlib/matplotlib.git (push)
63+ upstream https ://github.com/matplotlib/matplotlib.git (fetch)
64+ upstream https ://github.com/matplotlib/matplotlib.git (push)
7065 origin https://github.com/your-user-name/matplotlib.git (fetch)
7166 origin https://github.com/your-user-name/matplotlib.git (push)
7267
0 commit comments