Skip to content

Commit 5676b04

Browse files
newrengitster
authored andcommitted
documentation: fix verb tense
Diff best viewed with --color-diff. Signed-off-by: Elijah Newren <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 7f7e6bb commit 5676b04

File tree

13 files changed

+20
-20
lines changed

13 files changed

+20
-20
lines changed

Documentation/config/advice.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ advice.*::
8787
detachedHead::
8888
Advice shown when you used
8989
linkgit:git-switch[1] or linkgit:git-checkout[1]
90-
to move to the detach HEAD state, to instruct how to
90+
to move to the detached HEAD state, to instruct how to
9191
create a local branch after the fact.
9292
suggestDetachingHead::
9393
Advice shown when linkgit:git-switch[1] refuses to detach HEAD

Documentation/config/clone.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ clone.defaultRemoteName::
44
option to linkgit:git-clone[1].
55

66
clone.rejectShallow::
7-
Reject to clone a repository if it is a shallow one; this can be overridden by
7+
Reject cloning a repository if it is a shallow one; this can be overridden by
88
passing the `--reject-shallow` option on the command line. See linkgit:git-clone[1]
99

1010
clone.filterSubmodules::

Documentation/config/column.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ column.branch::
4343
See `column.ui` for details.
4444

4545
column.clean::
46-
Specify the layout when list items in `git clean -i`, which always
46+
Specify the layout when listing items in `git clean -i`, which always
4747
shows files and directories in columns. See `column.ui` for details.
4848

4949
column.status::

Documentation/git-clean.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ filter by pattern::
103103
This shows the files and directories to be deleted and issues an
104104
"Input ignore patterns>>" prompt. You can input space-separated
105105
patterns to exclude files and directories from deletion.
106-
E.g. "*.c *.h" will excludes files end with ".c" and ".h" from
106+
E.g. "*.c *.h" will exclude files ending with ".c" and ".h" from
107107
deletion. When you are satisfied with the filtered result, press
108108
ENTER (empty) back to the main menu.
109109

Documentation/git-help.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ OPTIONS
4848
-------
4949
-a::
5050
--all::
51-
Prints all the available commands on the standard output.
51+
Print all the available commands on the standard output.
5252

5353
--no-external-commands::
5454
When used with `--all`, exclude the listing of external "git-*"
@@ -69,10 +69,10 @@ OPTIONS
6969

7070
-g::
7171
--guides::
72-
Prints a list of the Git concept guides on the standard output.
72+
Print a list of the Git concept guides on the standard output.
7373

7474
--user-interfaces::
75-
Prints a list of the repository, command and file interfaces
75+
Print a list of the repository, command and file interfaces
7676
documentation on the standard output.
7777
+
7878
In-repository file interfaces such as `.git/info/exclude` are

Documentation/git-whatchanged.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Shows commit logs and diff output each commit introduces.
1818

1919
New users are encouraged to use linkgit:git-log[1] instead. The
2020
`whatchanged` command is essentially the same as linkgit:git-log[1]
21-
but defaults to show the raw format diff output and to skip merges.
21+
but defaults to showing the raw format diff output and skipping merges.
2222

2323
The command is primarily kept for historical reasons; fingers of
2424
many people who learned Git long before `git log` was invented by

Documentation/gitcli.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ arguments. Here are the rules:
2323
A subcommand may take dashed options (which may take their own
2424
arguments, e.g. "--max-parents 2") and arguments. You SHOULD
2525
give dashed options first and then arguments. Some commands may
26-
accept dashed options after you have already gave non-option
26+
accept dashed options after you have already given non-option
2727
arguments (which may make the command ambiguous), but you should
2828
not rely on it (because eventually we may find a way to fix
2929
these ambiguity by enforcing the "options then args" rule).
@@ -42,7 +42,7 @@ arguments. Here are the rules:
4242
`git diff HEAD --` to ask for the latter.
4343

4444
* Without disambiguating `--`, Git makes a reasonable guess, but errors
45-
out and asking you to disambiguate when ambiguous. E.g. if you have a
45+
out and asks you to disambiguate when ambiguous. E.g. if you have a
4646
file called HEAD in your work tree, `git diff HEAD` is ambiguous, and
4747
you have to say either `git diff HEAD --` or `git diff -- HEAD` to
4848
disambiguate.

Documentation/gitformat-chunk.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ caller is responsible for opening the `hashfile` and writing header
6767
information so the file format is identifiable before the chunk-based
6868
format begins.
6969

70-
Then, call `add_chunk()` for each chunk that is intended for write. This
70+
Then, call `add_chunk()` for each chunk that is intended for writing. This
7171
populates the `chunkfile` with information about the order and size of
7272
each chunk to write. Provide a `chunk_write_fn` function pointer to
7373
perform the write of the chunk data upon request.

Documentation/gitformat-pack.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ the delta data is a sequence of instructions to reconstruct the object
117117
from the base object. If the base object is deltified, it must be
118118
converted to canonical form first. Each instruction appends more and
119119
more data to the target object until it's complete. There are two
120-
supported instructions so far: one for copy a byte range from the
120+
supported instructions so far: one for copying a byte range from the
121121
source object and one for inserting new data embedded in the
122122
instruction itself.
123123

@@ -137,7 +137,7 @@ copy. Offset and size are in little-endian order.
137137

138138
All offset and size bytes are optional. This is to reduce the
139139
instruction size when encoding small offsets or sizes. The first seven
140-
bits in the first octet determines which of the next seven octets is
140+
bits in the first octet determine which of the next seven octets is
141141
present. If bit zero is set, offset1 is present. If bit one is set
142142
offset2 is present and so on.
143143

@@ -163,7 +163,7 @@ converted to 0x10000.
163163

164164
This is the instruction to construct target object without the base
165165
object. The following data is appended to the target object. The first
166-
seven bits of the first octet determines the size of data in
166+
seven bits of the first octet determine the size of data in
167167
bytes. The size must be non-zero.
168168

169169
==== Reserved instruction

Documentation/gitsubmodules.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Submodule operations can be configured using the following mechanisms
7878

7979
* The command line for those commands that support taking submodules
8080
as part of their pathspecs. Most commands have a boolean flag
81-
`--recurse-submodules` which specify whether to recurse into submodules.
81+
`--recurse-submodules` which specifies whether to recurse into submodules.
8282
Examples are `grep` and `checkout`.
8383
Some commands take enums, such as `fetch` and `push`, where you can
8484
specify how submodules are affected.
@@ -274,7 +274,7 @@ will not be checked out by default; you can instruct `clone` to recurse
274274
into submodules. The `init` and `update` subcommands of `git submodule`
275275
will maintain submodules checked out and at an appropriate revision in
276276
your working tree. Alternatively you can set `submodule.recurse` to have
277-
`checkout` recursing into submodules (note that `submodule.recurse` also
277+
`checkout` recurse into submodules (note that `submodule.recurse` also
278278
affects other Git commands, see linkgit:git-config[1] for a complete list).
279279

280280

0 commit comments

Comments
 (0)