Skip to content

Commit 8936352

Browse files
newrengitster
authored andcommitted
documentation: add missing words
Diff best viewed with --color-diff. Signed-off-by: Elijah Newren <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent dbe33c5 commit 8936352

19 files changed

+19
-19
lines changed

Documentation/config/advice.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ advice.*::
101101
otherwise caused a remote-tracking branch to be
102102
checked out. See the `checkout.defaultRemote`
103103
configuration variable for how to set a given remote
104-
to used by default in some situations where this
104+
to be used by default in some situations where this
105105
advice would be printed.
106106
amWorkDir::
107107
Advice that shows the location of the patch file when

Documentation/config/checkout.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ well the parallel version performs.
3939
checkout.thresholdForParallelism::
4040
When running parallel checkout with a small number of files, the cost
4141
of subprocess spawning and inter-process communication might outweigh
42-
the parallelization gains. This setting allows to define the minimum
42+
the parallelization gains. This setting allows you to define the minimum
4343
number of files for which parallel checkout should be attempted. The
4444
default is 100.

Documentation/config/http.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ http.lowSpeedLimit, http.lowSpeedTime::
254254

255255
http.noEPSV::
256256
A boolean which disables using of EPSV ftp command by curl.
257-
This can helpful with some "poor" ftp servers which don't
257+
This can be helpful with some "poor" ftp servers which don't
258258
support EPSV mode. Can be overridden by the `GIT_CURL_FTP_NO_EPSV`
259259
environment variable. Default is false (curl will use EPSV).
260260

Documentation/config/mergetool.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ mergetool.<tool>.trustExitCode::
2222
For a custom merge command, specify whether the exit code of
2323
the merge command can be used to determine whether the merge was
2424
successful. If this is not set to true then the merge target file
25-
timestamp is checked and the merge assumed to have been successful
25+
timestamp is checked and the merge is assumed to have been successful
2626
if the file has been updated, otherwise the user is prompted to
2727
indicate the success of the merge.
2828

Documentation/config/sendemail.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ sendemail.smtpBatchSize::
9191
See also the `--batch-size` option of linkgit:git-send-email[1].
9292

9393
sendemail.smtpReloginDelay::
94-
Seconds wait before reconnecting to smtp server.
94+
Seconds to wait before reconnecting to smtp server.
9595
See also the `--relogin-delay` option of linkgit:git-send-email[1].
9696

9797
sendemail.forbidSendmailVariables::

Documentation/git-checkout.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ $ git checkout -b <branch> --track <remote>/<branch>
4343
You could omit `<branch>`, in which case the command degenerates to
4444
"check out the current branch", which is a glorified no-op with
4545
rather expensive side-effects to show only the tracking information,
46-
if exists, for the current branch.
46+
if it exists, for the current branch.
4747

4848
'git checkout' -b|-B <new-branch> [<start-point>]::
4949

Documentation/git-credential-cache.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ DESCRIPTION
1616

1717
This command caches credentials for use by future Git programs.
1818
The stored credentials are kept in memory of the cache-daemon
19-
process (instead of written to a file) and are forgotten after a
19+
process (instead of being written to a file) and are forgotten after a
2020
configurable timeout. Credentials are forgotten sooner if the
2121
cache-daemon dies, for example if the system restarts. The cache
2222
is accessible over a Unix domain socket, restricted to the current

Documentation/git-credential-store.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ OPTIONS
3333

3434
Use `<path>` to lookup and store credentials. The file will have its
3535
filesystem permissions set to prevent other users on the system
36-
from reading it, but will not be encrypted or otherwise
36+
from reading it, but it will not be encrypted or otherwise
3737
protected. If not specified, credentials will be searched for from
3838
`~/.git-credentials` and `$XDG_CONFIG_HOME/git/credentials`, and
3939
credentials will be written to `~/.git-credentials` if it exists, or

Documentation/git-difftool.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ with custom merge tool commands and has the same value as `$MERGED`.
7878
Print a list of diff tools that may be used with `--tool`.
7979

8080
--[no-]symlinks::
81-
'git difftool''s default behavior is create symlinks to the
81+
'git difftool''s default behavior is to create symlinks to the
8282
working tree when run in `--dir-diff` mode and the right-hand
8383
side of the comparison yields the same content as the file in
8484
the working tree.

Documentation/git-fetch-pack.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ be in a separate packet, and the list must end with a flush packet.
6969

7070
--upload-pack=<git-upload-pack>::
7171
Use this to specify the path to 'git-upload-pack' on the
72-
remote side, if is not found on your $PATH.
72+
remote side, if it is not found on your $PATH.
7373
Installations of sshd ignores the user's environment
7474
setup scripts for login shells (e.g. .bash_profile) and
7575
your privately installed git may not be found on the system

0 commit comments

Comments
 (0)