Skip to content

Commit c7ae2d5

Browse files
committed
Sync with 'master'
2 parents 1630c34 + e895506 commit c7ae2d5

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

Documentation/CodingGuidelines

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ For C programs:
688688
walk_dog(dog[1]);
689689

690690
Cases where the array is employed as a whole rather than as its unit parts,
691-
the plural forms is preferable. E.g:
691+
the plural form is preferable. E.g:
692692

693693
char *dogs[] = ...;
694694
walk_all_dogs(dogs);

Documentation/RelNotes/2.54.0.adoc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ UI, Workflows & Features
3636
* Extend the alias configuration syntax to allow aliases using
3737
characters outside ASCII alphanumeric (plus '-').
3838

39-
* A signature on a commit that was GPG signed long time ago ought to
39+
* A signature on a commit that was GPG signed a long time ago ought to
4040
be still valid after the key that was used to sign it has expired,
4141
but we showed them in alarming red.
4242

@@ -88,7 +88,7 @@ UI, Workflows & Features
8888
* "git repo structure" command learns to report maximum values on
8989
various aspects of objects it inspects.
9090

91-
* "git rebase" learns "--trailer" command to drive the
91+
* "git rebase" learns "--trailer" option to drive the
9292
interpret-trailers machinery.
9393

9494
* "git fast-import" learned to optionally replace signature on
@@ -119,7 +119,7 @@ UI, Workflows & Features
119119
* "git replay" (experimental) learns, in addition to "pick" and
120120
"replay", a new operating mode "revert".
121121

122-
* git replay now supports replaying down to the root commit.
122+
* "git replay" now supports replaying down to the root commit.
123123

124124
* Handling of signed commits and tags in fast-import has been made more
125125
configurable.
@@ -207,7 +207,7 @@ Performance, Internal Implementation, Development Support etc.
207207
from getting added.
208208
209209
* The core.attributesfile is intended to be set per repository, but
210-
were kept track of by a single global variable in-core, which has
210+
was kept track of by a single global variable in-core, which has
211211
been corrected by moving it to per-repository data structure.
212212
213213
* Use the hook API to replace ad-hoc invocation of hook scripts via
@@ -232,8 +232,8 @@ Performance, Internal Implementation, Development Support etc.
232232
* Reduce dependence on the global the_hash_algo and the_repository
233233
variables of wt-status code path.
234234
235-
* The way combined list-object filter options are parsed has been
236-
revamped.
235+
* The way combined list-object filter options are parsed has been
236+
revamped.
237237
238238
* Editorconfig filename patterns were specified incorrectly, making
239239
many source files inside subdirectories unaffected, which has been
@@ -272,7 +272,7 @@ Performance, Internal Implementation, Development Support etc.
272272
* split-index.c has been updated to not use the global the_repository
273273
and the_hash_algo variables.
274274
275-
* The unsigned integer that is used as an bitset to specify the kind
275+
* The unsigned integer that is used as a bitset to specify the kind
276276
of branches interpret_branch_name() function has been changed to
277277
use a dedicated enum type.
278278
@@ -282,7 +282,7 @@ Performance, Internal Implementation, Development Support etc.
282282
* Code paths that loop over another array to push each element into a
283283
strvec have been rewritten to use strvec_pushv() instead.
284284
285-
* In case homebrew breaks REG_ENHANCED again, leave a in-code comment
285+
* In case homebrew breaks REG_ENHANCED again, leave an in-code comment
286286
to suggest use of our replacement regex as a workaround.
287287
288288
* MinGW build updates.
@@ -382,7 +382,7 @@ Fixes since v2.53
382382
(merge f4eff7116d ps/pack-concat-wo-backfill later to maint).
383383

384384
* "git switch <name>", in an attempt to create a local branch <name>
385-
after a remote tracking branch of the same name gave an advise
385+
after a remote tracking branch of the same name gave an advice
386386
message to disambiguate using "git checkout", which has been
387387
updated to use "git switch".
388388
(merge 12fee11f21 jc/checkout-switch-restore later to maint).
@@ -396,7 +396,7 @@ Fixes since v2.53
396396
* "git format-patch --from=<me>" did not honor the command line
397397
option when writing out the cover letter, which has been corrected.
398398

399-
* Update build precedure for mergetool documentation in meson-based builds.
399+
* Update build procedure for mergetool documentation in meson-based builds.
400400
(merge 58e4eeeeb5 pw/meson-doc-mergetool later to maint).
401401

402402
* An earlier attempt to optimize "git subtree" discarded too much

Documentation/config/pack.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ pack.usePathWalk::
161161

162162
pack.preferBitmapTips::
163163
Specifies a ref hierarchy (e.g., "refs/heads/"); can be
164-
given multiple times to specify more than one hierarchies.
164+
given multiple times to specify more than one hierarchy.
165165
When selecting which commits will receive bitmaps, prefer a
166166
commit at the tip of a reference that is contained in any of
167167
the configured hierarchies.

Documentation/config/sendemail.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ sendemail.smtpSSLClientCert::
2222
sendemail.smtpSSLClientKey::
2323
Path to the client private key file that corresponds to the client
2424
certificate. To avoid misconfiguration, this configuration must be used
25-
in conjunction with `sendemail.smtpSSLClientKey` or the
25+
in conjunction with `sendemail.smtpSSLClientCert` or the
2626
`--smtp-ssl-client-cert` option. If the client key is included in the
2727
client certificate, the choice of private key depends on the format of
2828
the certificate. Visit https://metacpan.org/pod/IO::Socket::SSL for more

Documentation/config/submodule.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ submodule.<name>.ignore::
4040
takes only differences between the HEAD of the submodule and the commit
4141
recorded in the superproject into account. "untracked" will additionally
4242
let submodules with modified tracked files in their work tree show up.
43-
When set to "none"(default) It also show submodules as changed if they have
43+
When set to "none" (default) it also shows submodules as changed if they have
4444
untracked files in their work tree.
4545
This setting overrides any setting made in .gitmodules for this submodule,
4646
both settings can be overridden on the command line by using the

Documentation/git-rerere.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ will automatically invoke this command.
4444
'forget' <pathspec>::
4545

4646
Reset the conflict resolutions which rerere has recorded for the current
47-
conflict in paths that match <pathspec>.
47+
conflicts in paths that match <pathspec>.
4848

4949
'diff'::
5050

Documentation/gitmodules.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ submodule.<name>.ignore::
7070
--
7171
all;; The submodule will never be considered modified (but will
7272
nonetheless show up in the output of status and commit when it has
73-
been staged). Add `(new commits)` can be overruled using the
74-
`git add --force <submodule.path>`.
75-
The setting affects `status`, `update-index`, `diff` and `log`(due
76-
to underlaying `diff`).
73+
been staged). Adding a submodule with `(new commits)` can be
74+
overridden using `git add --force <submodule.path>`.
75+
This setting affects `status`, `update-index`, `diff` and `log`
76+
(due to underlying `diff`).
7777

7878
dirty;; All changes to the submodule's work tree will be ignored, only
7979
committed differences between the `HEAD` of the submodule and its

0 commit comments

Comments
 (0)