Skip to content

Backport PR #9648 on branch v2.1.0-doc #9650

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 3, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/devel/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ We use `Git <https://git-scm.com/>`_ for version control and
You can check out the latest sources with the command (see
:ref:`set-up-fork` for more details)::

git clone https://github.com:matplotlib/matplotlib.git
git clone https://github.com/matplotlib/matplotlib.git

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

3. Clone this copy to your local disk::

$ git clone https://github.com:YourLogin/matplotlib.git
$ git clone https://github.com/YourLogin/matplotlib.git

4. Create a branch to hold your changes::

Expand Down
2 changes: 1 addition & 1 deletion doc/devel/gitwash/development_workflow.rst
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ collaborator:

Now all those people can do::

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

Remember that links starting with ``https`` or ``git@`` are read-write, and that
``git@`` uses the ssh protocol; links starting with ``git://`` are read-only.
Expand Down
8 changes: 4 additions & 4 deletions doc/devel/gitwash/set_up_fork.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Overview

::

git clone https://github.com:your-user-name/matplotlib.git
git clone https://github.com/your-user-name/matplotlib.git
cd matplotlib
git remote add upstream git://github.com/matplotlib/matplotlib.git

Expand All @@ -24,7 +24,7 @@ Clone your fork
---------------

#. Clone your fork to the local computer with ``git clone
https://github.com:your-user-name/matplotlib.git``
https://github.com/your-user-name/matplotlib.git``
#. Investigate. Change directory to your new repo: ``cd matplotlib``. Then
``git branch -a`` to show you all branches. You'll get something
like:
Expand Down Expand Up @@ -67,7 +67,7 @@ Just for your own satisfaction, show yourself that you now have a new

upstream git://github.com/matplotlib/matplotlib.git (fetch)
upstream git://github.com/matplotlib/matplotlib.git (push)
origin https://github.com:your-user-name/matplotlib.git (fetch)
origin https://github.com:your-user-name/matplotlib.git (push)
origin https://github.com/your-user-name/matplotlib.git (fetch)
origin https://github.com/your-user-name/matplotlib.git (push)

.. include:: links.inc