Skip to content
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
4 changes: 3 additions & 1 deletion doc/developers/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,10 @@ then submit a "pull request" (PR):

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

7. Create a branch to hold your development changes::
7. Fetch the ``upstream`` and then create a branch to hold your development
changes::

$ git fetch upstream
$ git checkout -b my-feature upstream/master

and start making changes. Always use a ``feature`` branch. It's good
Expand Down