@@ -132,7 +132,7 @@ You should have already :ref:`set up your system <setup>`,
132132 git pull origin <branch-name> # pull = fetch + merge
133133
134134 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
136136 resolution mode. See :ref: `resolving-merge-conflicts ` below.
137137
138138* If time passes and there are merge conflicts with the main branch, GitHub
@@ -165,14 +165,14 @@ resolved as follows:
165165 git status
166166
167167#. 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 .
169169
170170#. Commit the affected files::
171171
172172 git add <filenames>
173173 git merge --continue
174174
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
176176message. It is usually okay to leave that as-is and close the editor.
177177
178178See `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.
241241``patchcheck `` is a simple automated patch checklist that guides a developer
242242through the common patch generation checks. To run ``patchcheck ``:
243243
244- On *UNIX * (including macOS)::
244+ On *Unix * (including macOS)::
245245
246246 make patchcheck
247247
@@ -303,7 +303,7 @@ to explain in proper depth what has happened (detail should be good enough
303303that a core developer reading the commit message understands the
304304justification for the change).
305305
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
307307instructions on how the commit message should look like when merging a pull
308308request.
309309
0 commit comments