Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
DOC: add remote upstream#25828
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
DOC: add remote upstream#25828
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -59,13 +59,29 @@ should replace ``<your-username>`` with your GitHub username): | ||||||
This will place the sources in a directory :file:`matplotlib` below your | ||||||
current working directory and set up the ``origin`` remote to point to your own | ||||||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Suggested change
Is this clearer? If so, same wording should be applied to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I really really really like this minor change - it addresses my concerns by explaining what the words are. Can I open a follow on PR to make this change? | ||||||
fork. Change into this directory before continuing:: | ||||||
cd matplotlib | ||||||
Now set up the ``upstream`` remote to point to the Matplotlib main repository, | ||||||
so that you can access the latest changes there (see also `Managing remote repositories | ||||||
<https://docs.github.com/en/get-started/getting-started-with-git/managing-remote-repositories>`__.): | ||||||
.. tab-set:: | ||||||
.. tab-item:: https | ||||||
.. code-block:: bash | ||||||
git remote add upstream https://github.com/matplotlib/matplotlib.git | ||||||
.. tab-item:: ssh | ||||||
.. code-block:: bash | ||||||
git remote add upstream git@github.com:matplotlib/matplotlib.git | ||||||
.. note:: | ||||||
For more information on ``git`` and ``GitHub``, check the following resources. | ||||||