Skip to content

Commit 00aae4f

Browse files
dstansbyMeeseeksDev[bot]
authored and
MeeseeksDev[bot]
committed
Backport PR #9648: Correct https git URIs in documentation
1 parent 7cb8f0c commit 00aae4f

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

doc/devel/contributing.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ We use `Git <https://git-scm.com/>`_ for version control and
7979
You can check out the latest sources with the command (see
8080
:ref:`set-up-fork` for more details)::
8181

82-
git clone https://github.com:matplotlib/matplotlib.git
82+
git clone https://github.com/matplotlib/matplotlib.git
8383

8484
and navigate to the :file:`matplotlib` directory. If you have the proper privileges,
8585
you can use ``git@`` instead of ``https://``, which works through the ssh protocol
@@ -180,7 +180,7 @@ then submit a "pull request" (PR):
180180

181181
3. Clone this copy to your local disk::
182182

183-
$ git clone https://github.com:YourLogin/matplotlib.git
183+
$ git clone https://github.com/YourLogin/matplotlib.git
184184

185185
4. Create a branch to hold your changes::
186186

doc/devel/gitwash/development_workflow.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ collaborator:
208208

209209
Now all those people can do::
210210

211-
git clone https://gith hub.com:your-user-name/matplotlib.git
211+
git clone https://github.com/your-user-name/matplotlib.git
212212

213213
Remember that links starting with ``https`` or ``git@`` are read-write, and that
214214
``git@`` uses the ssh protocol; links starting with ``git://`` are read-only.

doc/devel/gitwash/set_up_fork.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Overview
1313

1414
::
1515

16-
git clone https://github.com:your-user-name/matplotlib.git
16+
git clone https://github.com/your-user-name/matplotlib.git
1717
cd matplotlib
1818
git remote add upstream git://github.com/matplotlib/matplotlib.git
1919

@@ -24,7 +24,7 @@ Clone your fork
2424
---------------
2525

2626
#. Clone your fork to the local computer with ``git clone
27-
https://github.com:your-user-name/matplotlib.git``
27+
https://github.com/your-user-name/matplotlib.git``
2828
#. Investigate. Change directory to your new repo: ``cd matplotlib``. Then
2929
``git branch -a`` to show you all branches. You'll get something
3030
like:
@@ -67,7 +67,7 @@ Just for your own satisfaction, show yourself that you now have a new
6767
6868
upstream git://github.com/matplotlib/matplotlib.git (fetch)
6969
upstream git://github.com/matplotlib/matplotlib.git (push)
70-
origin https://github.com:your-user-name/matplotlib.git (fetch)
71-
origin https://github.com:your-user-name/matplotlib.git (push)
70+
origin https://github.com/your-user-name/matplotlib.git (fetch)
71+
origin https://github.com/your-user-name/matplotlib.git (push)
7272
7373
.. include:: links.inc

0 commit comments

Comments
 (0)