1 file changed
+11
-9
lines changedLines changed: 11 additions & 9 deletions
@@ -102,27 +102,29 @@ A brief overview is:
102
102
103
103
3. Clone this copy to your local disk::
104
104
105
- $ git clone https://github.com/YourLogin/matplotlib.git
105
+ git clone https://github.com/<YOUR GITHUB USERNAME>/matplotlib.git
106
106
107
-4. Create a branch to hold your changes::
107
+4. Enter the directory and install the local version of Matplotlib.
108
+ See ref`<installing_for_devs>` for instructions
108
109
109
- $ git checkout -b my-feature origin/master
110
+5. Create a branch to hold your changes::
111
+
112
+ git checkout -b my-feature origin/master
110
113
111
114
and start making changes. Never work in the ``master`` branch!
112
115
113
-5. Work on this copy, on your computer, using Git to do the version control.
116
+6. Work on this copy, on your computer, using Git to do the version control.
114
117
When you're done editing e.g., ``lib/matplotlib/collections.py``, do::
115
118
116
- $ git add lib/matplotlib/collections.py
117
- $ git commit
119
+ git add lib/matplotlib/collections.py
120
+ git commit
118
121
119
122
to record your changes in Git, then push them to GitHub with::
120
123
121
- $ git push -u origin my-feature
124
+ git push -u origin my-feature
122
125
123
126
Finally, go to the web page of your fork of the Matplotlib repo, and click
124
-'Pull request' to send your changes to the maintainers for review. You may
125
-want to consider sending an email to the mailing list for more visibility.
127
+'Pull request' to send your changes to the maintainers for review.
126
128
127
129
.. seealso::
128
130
0 commit comments