Skip to content

Commit 0a4f051

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

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+93
-93
lines changed

Documentation/ReviewingGuidelines.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Principles
1919
Selecting patch(es) to review
2020
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2121
If you are looking for a patch series in need of review, start by checking
22-
latest "What's cooking in git.git" email
22+
the latest "What's cooking in git.git" email
2323
(https://lore.kernel.org/git/[email protected]/[example]). The "What's
2424
cooking" emails & replies can be found using the query `s:"What's cooking"` on
2525
the https://lore.kernel.org/git/[`lore.kernel.org` mailing list archive];

Documentation/config/advice.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ advice.*::
55
+
66
--
77
ambiguousFetchRefspec::
8-
Advice shown when fetch refspec for multiple remotes maps to
8+
Advice shown when a fetch refspec for multiple remotes maps to
99
the same remote-tracking branch namespace and causes branch
1010
tracking set-up to fail.
1111
fetchShowForcedUpdates::

Documentation/config/commit.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ commit.cleanup::
22
This setting overrides the default of the `--cleanup` option in
33
`git commit`. See linkgit:git-commit[1] for details. Changing the
44
default can be useful when you always want to keep lines that begin
5-
with comment character `#` in your log message, in which case you
5+
with the comment character `#` in your log message, in which case you
66
would do `git config commit.cleanup whitespace` (note that you will
77
have to remove the help lines that begin with `#` in the commit log
88
template yourself, if you do this).

Documentation/config/fsck.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Setting an unknown `fsck.<msg-id>` value will cause fsck to die, but
3636
doing the same for `receive.fsck.<msg-id>` and `fetch.fsck.<msg-id>`
3737
will only cause git to warn.
3838
+
39-
See `Fsck Messages` section of linkgit:git-fsck[1] for supported
39+
See the `Fsck Messages` section of linkgit:git-fsck[1] for supported
4040
values of `<msg-id>`.
4141

4242

Documentation/config/gc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ See the `gc.bigPackThreshold` configuration variable below. When in
3939
use, it'll affect how the auto pack limit works.
4040

4141
gc.autoDetach::
42-
Make `git gc --auto` return immediately and run in background
42+
Make `git gc --auto` return immediately and run in the background
4343
if the system supports it. Default is true.
4444

4545
gc.bigPackThreshold::

Documentation/config/gui.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ gui.matchTrackingBranch::
2424
not. Default: "false".
2525

2626
gui.newBranchTemplate::
27-
Is used as suggested name when creating new branches using the
27+
Is used as a suggested name when creating new branches using the
2828
linkgit:git-gui[1].
2929

3030
gui.pruneDuringFetch::

Documentation/config/man.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ man.viewer::
55
man.<tool>.cmd::
66
Specify the command to invoke the specified man viewer. The
77
specified command is evaluated in shell with the man page
8-
passed as argument. (See linkgit:git-help[1].)
8+
passed as an argument. (See linkgit:git-help[1].)
99

1010
man.<tool>.path::
1111
Override the path for the given tool that may be used to

Documentation/config/notes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
notes.mergeStrategy::
22
Which merge strategy to choose by default when resolving notes
33
conflicts. Must be one of `manual`, `ours`, `theirs`, `union`, or
4-
`cat_sort_uniq`. Defaults to `manual`. See "NOTES MERGE STRATEGIES"
4+
`cat_sort_uniq`. Defaults to `manual`. See the "NOTES MERGE STRATEGIES"
55
section of linkgit:git-notes[1] for more information on each strategy.
66
+
77
This setting can be overridden by passing the `--strategy` option to

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 to wait before reconnecting to smtp server.
94+
Seconds to wait before reconnecting to the smtp server.
9595
See also the `--relogin-delay` option of linkgit:git-send-email[1].
9696

9797
sendemail.forbidSendmailVariables::

Documentation/config/stash.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
stash.showIncludeUntracked::
22
If this is set to true, the `git stash show` command will show
33
the untracked files of a stash entry. Defaults to false. See
4-
description of 'show' command in linkgit:git-stash[1].
4+
the description of the 'show' command in linkgit:git-stash[1].
55

66
stash.showPatch::
77
If this is set to true, the `git stash show` command without an
88
option will show the stash entry in patch form. Defaults to false.
9-
See description of 'show' command in linkgit:git-stash[1].
9+
See the description of the 'show' command in linkgit:git-stash[1].
1010

1111
stash.showStat::
1212
If this is set to true, the `git stash show` command without an
13-
option will show diffstat of the stash entry. Defaults to true.
14-
See description of 'show' command in linkgit:git-stash[1].
13+
option will show a diffstat of the stash entry. Defaults to true.
14+
See the description of the 'show' command in linkgit:git-stash[1].

0 commit comments

Comments
 (0)