Skip to content

Contributors Documentaion - A note on remotes.. #602

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 2 commits into from
Feb 1, 2012
Merged
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
11 changes: 11 additions & 0 deletions doc/developers/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,17 @@ the web page of the repo, and click on 'Pull request' to send us a pull
request. This will send an email to the commiters, but might also send an
email to the mailing list in order to get more visibility.

.. note::

In the above setup, your ``origin`` remote-repository points to
YourLogin/scikit-learn.git. If you wish to `fetch/merge` from the main
repository instead of your `forked` one, you'll need
to add another remote to use instead of ``origin``. If we choose the name
``upstream`` for it, the command will be::

$ git remote add upstream git@github.com:scikit-learn/scikit-learn.git


(If any of the above seems like magic to you, then look up the
`Git documentation <http://git-scm.com/documentation>`_ on the web.)

Expand Down