Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 663e30f

Browse filesBrowse files
authored
Merge pull request #9648 from mastbaum/fix-doc-typos
Correct https git URIs in documentation
2 parents 7f8e63a + 4bcf449 commit 663e30f
Copy full SHA for 663e30f

File tree

Expand file treeCollapse file tree

3 files changed

+7
-7
lines changed
Filter options
Expand file treeCollapse file tree

3 files changed

+7
-7
lines changed

‎doc/devel/contributing.rst

Copy file name to clipboardExpand all lines: doc/devel/contributing.rst
+2-2Lines changed: 2 additions & 2 deletions
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
@@ -185,7 +185,7 @@ A brief overview is:
185185

186186
3. Clone this copy to your local disk::
187187

188-
$ git clone https://github.com:YourLogin/matplotlib.git
188+
$ git clone https://github.com/YourLogin/matplotlib.git
189189

190190
4. Create a branch to hold your changes::
191191

‎doc/devel/gitwash/development_workflow.rst

Copy file name to clipboardExpand all lines: doc/devel/gitwash/development_workflow.rst
+1-1Lines changed: 1 addition & 1 deletion
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

Copy file name to clipboardExpand all lines: doc/devel/gitwash/set_up_fork.rst
+4-4Lines changed: 4 additions & 4 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.