]> git.ipfire.org Git - thirdparty/git.git/commitdiff
Revert "Merge branch 'ja/doc-misc-fixes' into next"
authorJunio C Hamano <gitster@pobox.com>
Sat, 20 Dec 2025 05:55:10 +0000 (14:55 +0900)
committerJunio C Hamano <gitster@pobox.com>
Sat, 20 Dec 2025 05:55:10 +0000 (14:55 +0900)
This reverts commit d30d8cac712739fdf30273495895b13b3885e7de, reversing
changes made to 27c9ad156ce9ef349746088cf1c4e394d79c84e1.

Documentation/git-checkout.adoc
Documentation/git-rebase.adoc
Documentation/git-repack.adoc
Documentation/git-send-email.adoc
Documentation/git-worktree.adoc

index 43ccf47cf6de285aedd4e448ee862b57b054714c..6f281b298efac1393ed2301958e05c9661339ed2 100644 (file)
@@ -509,7 +509,7 @@ ARGUMENT DISAMBIGUATION
 -----------------------
 
 When you run `git checkout <something>`, Git tries to guess whether
-_<something>_ is intended to be a branch, a commit, or a set of file(s),
+`<something>` is intended to be a branch, a commit, or a set of file(s),
 and then either switches to that branch or commit, or restores the
 specified files.
 
index e177808004fa8159f93ce3fd548d6ee9ac5cd16e..9742833ebe4207e94b79e0e698ef5cc91e93f5fc 100644 (file)
@@ -87,7 +87,7 @@ of the to-be-rebased branch. However, `ORIG_HEAD` is not guaranteed to still
 point to that commit at the end of the rebase if other commands that change
 `ORIG_HEAD` (like `git reset`) are used during the rebase. The previous branch
 tip, however, is accessible using the reflog of the current branch (i.e. `@{1}`,
-see linkgit:gitrevisions[7]).
+see linkgit:gitrevisions[7].
 
 TRANSPLANTING A TOPIC BRANCH WITH --ONTO
 ----------------------------------------
index 673ce91083720d2fb1b6edf7fc5267b96c1a1042..d12c4985f61c06d56bf68b16585727c6a702298e 100644 (file)
@@ -77,14 +77,14 @@ to the new separate pack will be written.
        Only useful with `--cruft -d`.
 
 --max-cruft-size=<n>::
-       Override `--max-pack-size` for cruft packs. Inherits the value of
+       Overrides `--max-pack-size` for cruft packs. Inherits the value of
        `--max-pack-size` (if any) by default. See the documentation for
        `--max-pack-size` for more details.
 
 --combine-cruft-below-size=<n>::
        When generating cruft packs without pruning, only repack
-       existing cruft packs whose size is strictly less than `<n>`
-       bytes, which can optionally
+       existing cruft packs whose size is strictly less than `<n>`,
+       where `<n>` represents a number of bytes, which can optionally
        be suffixed with "k", "m", or "g". Cruft packs whose size is
        greater than or equal to `<n>` are left as-is and not repacked.
        Useful when you want to avoid repacking large cruft pack(s) in
index ebe8853e9f5da7ab3d89fd5e15e40a77ed122f8d..688efe2786c10cae5cf998f5623baaed4dc21d51 100644 (file)
@@ -208,7 +208,7 @@ Sending
        for your own case. Default is the value of `sendemail.smtpEncryption`.
 
 --smtp-domain=<FQDN>::
-       Specify the Fully Qualified Domain Name (FQDN) used in the
+       Specifies the Fully Qualified Domain Name (FQDN) used in the
        HELO/EHLO command to the SMTP server.  Some servers require the
        FQDN to match your IP address.  If not set, `git send-email` attempts
        to determine your FQDN automatically.  Default is the value of
@@ -245,7 +245,7 @@ a password is obtained using linkgit:git-credential[1].
        Disable SMTP authentication. Short hand for `--smtp-auth=none`.
 
 --smtp-server=<host>::
-       Specify the outgoing SMTP server to use (e.g.
+       If set, specifies the outgoing SMTP server to use (e.g.
        `smtp.example.com` or a raw IP address).  If unspecified, and if
        `--sendmail-cmd` is also unspecified, the default is to search
        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`
 instead.
 
 --smtp-server-port=<port>::
-       Specify a port different from the default port (SMTP
+       Specifies a port different from the default port (SMTP
        servers typically listen to smtp port 25, but may also listen to
        submission port 587, or the common SSL smtp port 465);
        symbolic port names (e.g. `submission` instead of 587)
@@ -266,7 +266,7 @@ instead.
        `sendemail.smtpServerPort` configuration variable.
 
 --smtp-server-option=<option>::
-       Specify the outgoing SMTP server option to use.
+       If set, specifies the outgoing SMTP server option to use.
        Default value can be specified by the `sendemail.smtpServerOption`
        configuration option.
 +
@@ -277,7 +277,7 @@ must be used for each option.
 --smtp-ssl::
        Legacy alias for `--smtp-encryption ssl`.
 
---smtp-ssl-cert-path <path>::
+--smtp-ssl-cert-path::
        Path to a store of trusted CA certificates for SMTP SSL/TLS
        certificate validation (either a directory that has been processed
        by `c_rehash`, or a single file containing one or more PEM format
@@ -346,11 +346,11 @@ Automating
 --no-to::
 --no-cc::
 --no-bcc::
-       Clear any list of `To:`, `Cc:`, `Bcc:` addresses previously
+       Clears any list of `To:`, `Cc:`, `Bcc:` addresses previously
        set via config.
 
 --no-identity::
-       Clear the previously read value of `sendemail.identity` set
+       Clears the previously read value of `sendemail.identity` set
        via config, if any.
 
 --to-cmd=<command>::
@@ -509,12 +509,12 @@ have been specified, in which case default to `compose`.
        Currently, validation means the following:
 +
 --
-* Invoke the sendemail-validate hook if present (see linkgit:githooks[5]).
-* Warn of patches that contain lines longer than
-  998 characters unless a suitable transfer encoding
-  (`auto`, `base64`, or `quoted-printable`) is used;
-  this is due to SMTP limits as described by
-  https://www.ietf.org/rfc/rfc5322.txt.
+               *       Invoke the sendemail-validate hook if present (see linkgit:githooks[5]).
+               *       Warn of patches that contain lines longer than
+                       998 characters unless a suitable transfer encoding
+                       (`auto`, `base64`, or `quoted-printable`) is used;
+                       this is due to SMTP limits as described by
+                       https://www.ietf.org/rfc/rfc5322.txt.
 --
 +
 Default is the value of `sendemail.validate`; if this is not set,
index d74ad7b0e9bd75cc68b898d4a7d2e302e2df74ba..f272f797837f454ea286cc9939929d6d42c8d6a8 100644 (file)
@@ -104,7 +104,7 @@ associated with a new unborn branch named _<branch>_ (after
 passed to the command. In the event the repository has a remote and
 `--guess-remote` is used, but no remote or local branches exist, then the
 command fails with a warning reminding the user to fetch from their remote
-first (or override by using `-f`/`--force`).
+first (or override by using `-f/--force`).
 
 `list`::