doc: correct minor wording issues
* use imperative mood for consistency in options descriptions * add missing parenthesis * reword verbose phrase in git-repack.adoc Signed-off-by: Jean-Noël Avila <jn.avila@free.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Jean-Noël Avila committed
Dec 19, 2025 at 18:54 UTC
8ee262985a1197970cc8938a2fb5c70817d213ab
3 files changed
+10
-10
Documentation/git-rebase.adoc
+1
-1
@@ -87,7 +87,7 @@ of the to-be-rebased branch. However, `ORIG_HEAD` is not guaranteed to still
87
point to that commit at the end of the rebase if other commands that change
88
`ORIG_HEAD` (like `git reset`) are used during the rebase. The previous branch
89
tip, however, is accessible using the reflog of the current branch (i.e. `@{1}`,
90
-see linkgit:gitrevisions[7].
90
+see linkgit:gitrevisions[7]).
91
92
TRANSPLANTING A TOPIC BRANCH WITH --ONTO
93
----------------------------------------
Documentation/git-repack.adoc
+3
-3
@@ -77,14 +77,14 @@ to the new separate pack will be written.
77
Only useful with `--cruft -d`.
78
79
--max-cruft-size=<n>::
80
- Overrides `--max-pack-size` for cruft packs. Inherits the value of
80
+ Override `--max-pack-size` for cruft packs. Inherits the value of
81
`--max-pack-size` (if any) by default. See the documentation for
82
`--max-pack-size` for more details.
83
84
--combine-cruft-below-size=<n>::
85
When generating cruft packs without pruning, only repack
86
- existing cruft packs whose size is strictly less than `<n>`,
87
- where `<n>` represents a number of bytes, which can optionally
86
+ existing cruft packs whose size is strictly less than `<n>`
87
+ bytes, which can optionally
88
be suffixed with "k", "m", or "g". Cruft packs whose size is
89
greater than or equal to `<n>` are left as-is and not repacked.
90
Useful when you want to avoid repacking large cruft pack(s) in
Documentation/git-send-email.adoc
+6
-6
@@ -208,7 +208,7 @@ Sending
208
for your own case. Default is the value of `sendemail.smtpEncryption`.
209
210
--smtp-domain=<FQDN>::
211
- Specifies the Fully Qualified Domain Name (FQDN) used in the
211
+ Specify the Fully Qualified Domain Name (FQDN) used in the
212
HELO/EHLO command to the SMTP server. Some servers require the
213
FQDN to match your IP address. If not set, `git send-email` attempts
214
to determine your FQDN automatically. Default is the value of
@@ -245,7 +245,7 @@ a password is obtained using linkgit:git-credential[1].
245
Disable SMTP authentication. Short hand for `--smtp-auth=none`.
246
247
--smtp-server=<host>::
248
- If set, specifies the outgoing SMTP server to use (e.g.
248
+ Specify the outgoing SMTP server to use (e.g.
249
`smtp.example.com` or a raw IP address). If unspecified, and if
250
`--sendmail-cmd` is also unspecified, the default is to search
251
for `sendmail` in `/usr/sbin`, `/usr/lib` and `$PATH` if such a
@@ -258,7 +258,7 @@ command names. For those use cases, consider using `--sendmail-cmd`
258
instead.
259
260
--smtp-server-port=<port>::
261
- Specifies a port different from the default port (SMTP
261
+ Specify a port different from the default port (SMTP
262
servers typically listen to smtp port 25, but may also listen to
263
submission port 587, or the common SSL smtp port 465);
264
symbolic port names (e.g. `submission` instead of 587)
@@ -266,7 +266,7 @@ instead.
266
`sendemail.smtpServerPort` configuration variable.
267
268
--smtp-server-option=<option>::
269
- If set, specifies the outgoing SMTP server option to use.
269
+ Specify the outgoing SMTP server option to use.
270
Default value can be specified by the `sendemail.smtpServerOption`
271
configuration option.
272
+
@@ -347,11 +347,11 @@ Automating
347
--no-to::
348
--no-cc::
349
--no-bcc::
350
- Clears any list of `To:`, `Cc:`, `Bcc:` addresses previously
350
+ Clear any list of `To:`, `Cc:`, `Bcc:` addresses previously
351
set via config.
352
353
--no-identity::
354
- Clears the previously read value of `sendemail.identity` set
354
+ Clear the previously read value of `sendemail.identity` set
355
via config, if any.
356
357
--to-cmd=<command>::