@@ -132,7 +132,7 @@ You should have already :ref:`set up your system <setup>`,
132
132
git pull origin <branch-name> # pull = fetch + merge
133
133
134
134
If you have made local changes that have not been pushed to your fork and
135
- there are merge conflicts, git will warn you about this and enter conflict
135
+ there are merge conflicts, Git will warn you about this and enter conflict
136
136
resolution mode. See :ref: `resolving-merge-conflicts ` below.
137
137
138
138
* If time passes and there are merge conflicts with the main branch, GitHub
@@ -165,14 +165,14 @@ resolved as follows:
165
165
git status
166
166
167
167
#. Edit the affected files and bring them to their intended final state.
168
- Make sure to remove the special "conflict markers" inserted by git .
168
+ Make sure to remove the special "conflict markers" inserted by Git .
169
169
170
170
#. Commit the affected files::
171
171
172
172
git add <filenames>
173
173
git merge --continue
174
174
175
- When running the final command, git may open an editor for writing a commit
175
+ When running the final command, Git may open an editor for writing a commit
176
176
message. It is usually okay to leave that as-is and close the editor.
177
177
178
178
See `the merge command's documentation <https://git-scm.com/docs/git-merge >`_
@@ -241,7 +241,7 @@ should do to help ensure that your pull request is accepted.
241
241
``patchcheck `` is a simple automated patch checklist that guides a developer
242
242
through the common patch generation checks. To run ``patchcheck ``:
243
243
244
- On *UNIX * (including macOS)::
244
+ On *Unix * (including macOS)::
245
245
246
246
make patchcheck
247
247
@@ -303,7 +303,7 @@ to explain in proper depth what has happened (detail should be good enough
303
303
that a core developer reading the commit message understands the
304
304
justification for the change).
305
305
306
- Check :ref: `the git bootcamp <accepting-and-merging-a-pr >` for further
306
+ Check :ref: `the Git bootcamp <accepting-and-merging-a-pr >` for further
307
307
instructions on how the commit message should look like when merging a pull
308
308
request.
309
309
0 commit comments