@@ -83,15 +83,15 @@ and click on the ``Pull Requests`` link located in the sidebar.
83
83
84
84
Then, click on the big ``New pull request `` button. As GitHub cannot guess the
85
85
exact changes that you want to propose, select the appropriate branches where
86
- changes should be applied:º
86
+ changes should be applied:
87
87
88
88
.. image :: /images/contributing/docs-pull-request-change-base.png
89
89
:align: center
90
90
91
- In this example, the **base repository ** should be ``symfony/symfony-docs `` and
92
- the **base branch ** should be the ``2.3 ``, which is the branch that you selected
93
- to base your changes on. The **compare repository ** should be your forked copy
94
- of ``symfony-docs `` and the **compare branch ** should be ``improve_install_chapter ``,
91
+ In this example, the **base fork ** should be ``symfony/symfony-docs `` and
92
+ the **base ** branch should be the ``2.3 ``, which is the branch that you selected
93
+ to base your changes on. The **head fork ** should be your forked copy
94
+ of ``symfony-docs `` and the **compare ** branch should be ``improve_install_chapter ``,
95
95
which is the name of the branch you created and where you made your changes.
96
96
97
97
.. _pull-request-format :
@@ -136,7 +136,7 @@ changes and push them:
136
136
137
137
# ... do your changes
138
138
139
- $ git push
139
+ $ git push origin improve_install_chapter
140
140
141
141
**Step 10. ** After your pull request is eventually accepted and merged in the Symfony
142
142
documentation, you will be included in the `Symfony Documentation Contributors `_
@@ -188,7 +188,7 @@ section:
188
188
# submit the changes to your forked repository
189
189
$ git add xxx.rst # (optional) only if this is a new content
190
190
$ git commit xxx.rst
191
- $ git push
191
+ $ git push origin my_changes
192
192
193
193
# go to GitHub and create the Pull Request
194
194
#
@@ -230,7 +230,7 @@ steps to contribute to the Symfony documentation, which you can use as a
230
230
# add and commit your changes
231
231
$ git add xxx.rst # (optional) only if this is a new content
232
232
$ git commit xxx.rst
233
- $ git push
233
+ $ git push origin my_changes
234
234
235
235
# go to GitHub and create the Pull Request
236
236
#
@@ -244,10 +244,25 @@ steps to contribute to the Symfony documentation, which you can use as a
244
244
245
245
# (optional) make the changes requested by reviewers and commit them
246
246
$ git commit xxx.rst
247
- $ git push
247
+ $ git push origin my_changes
248
248
249
249
You guessed right: after all this hard work, it's **time to celebrate again! **
250
250
251
+ Minor Changes (e.g. Typos)
252
+ --------------------------
253
+
254
+ You may find just a typo and want to fix it. Due to GitHub's functional
255
+ frontend, it is quite simple to create Pull Requests right in your
256
+ browser while reading the docs on **symfony.com **. To do this, just click
257
+ the ``edit this page `` button on the upper right corner. Beforehand
258
+ please switch to the right branch as mentioned before. Now you are able
259
+ to edit the content and describe your changes within the GitHub
260
+ frontend. When your work is done, click ``propose file change `` to
261
+ create a commit and, in case it is your first contribution, also your
262
+ fork. A new branch is created automatically in order to provide a base
263
+ for your Pull Request. Then fill out the form to create the Pull Request
264
+ as described above.
265
+
251
266
Frequently Asked Questions
252
267
--------------------------
253
268
0 commit comments