@@ -90,7 +90,7 @@ this value accordingly):
90
90
.. code-block :: terminal
91
91
92
92
$ cd projects/
93
- $ git clone git://github.com/< YOUR GITHUB USERNAME> /symfony-docs.git
93
+ $ git clone git://github.com/YOUR- GITHUB- USERNAME/symfony-docs.git
94
94
95
95
**Step 3. ** Add the original Symfony docs repository as a "Git remote" executing
96
96
this command:
@@ -106,8 +106,8 @@ your project:
106
106
.. code-block :: terminal
107
107
108
108
$ git remote -v
109
- origin git@github.com:< YOUR GITHUB USERNAME> /symfony-docs.git (fetch)
110
- origin git@github.com:< YOUR GITHUB USERNAME> /symfony-docs.git (push)
109
+ origin git@github.com:YOUR- GITHUB- USERNAME/symfony-docs.git (fetch)
110
+ origin git@github.com:YOUR- GITHUB- USERNAME/symfony-docs.git (push)
111
111
upstream https://github.com/symfony/symfony-docs.git (fetch)
112
112
upstream https://github.com/symfony/symfony-docs.git (push)
113
113
@@ -158,7 +158,7 @@ forked repository and ``improve_install_chapter`` is the name of the branch you
158
158
created previously.
159
159
160
160
**Step 7. ** Everything is now ready to initiate a **pull request **. Go to your
161
- forked repository at ``https//github.com/< YOUR GITHUB USERNAME> /symfony-docs ``
161
+ forked repository at ``https//github.com/YOUR- GITHUB- USERNAME/symfony-docs ``
162
162
and click on the **Pull Requests ** link located in the sidebar.
163
163
164
164
Then, click on the big **New pull request ** button. As GitHub cannot guess the
@@ -223,12 +223,14 @@ contribution to the Symfony docs:
223
223
224
224
# ... do your changes
225
225
226
- # add and commit your changes
227
- $ git add xxx.rst # (optional) only if this is a new content
226
+ # (optional) add your changes if this is a new content
227
+ $ git add xxx.rst
228
+
229
+ # commit your changes and push them to your fork
228
230
$ git commit xxx.rst
229
231
$ git push origin my_changes
230
232
231
- # go to GitHub and create the Pull Request
233
+ # ... go to GitHub and create the Pull Request
232
234
233
235
# (optional) make the changes requested by reviewers and commit them
234
236
$ git commit xxx.rst
0 commit comments