]> git.ipfire.org Git - thirdparty/git.git/commitdiff
doc: replay: use a nested description list
authorKristoffer Haugsbakk <code@khaugsbakk.name>
Thu, 30 Jul 2026 09:57:15 +0000 (11:57 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 30 Jul 2026 16:15:04 +0000 (09:15 -0700)
This bullet list for `--ref-action` introduces a term with a colon.
This is exactly what a description list is, structurally. Let’s be
stylistically consistent and use the desc. list markup construct.

In short, just transform this unordered list in the same way that we
did for `replay.refAction` in the previous commit.

Signed-off-by: Kristoffer Haugsbakk <code@khaugsbakk.name>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-replay.adoc

index 4de85088d6c4c9d7e649670f9de48f685a6aa124..b4fe43ec687859e4043e449dd882b6dd2770c34c 100644 (file)
@@ -80,10 +80,10 @@ incompatible with `--contained` (which is a modifier for `--onto` only).
        Control how references are updated. The mode can be:
 +
 --
-       * `update` (default): Update refs directly using an atomic transaction.
-         All refs are updated or none are (all-or-nothing behavior).
-       * `print`: Output update-ref commands for pipeline use. This is the
-         traditional behavior where output can be piped to `git update-ref --stdin`.
+`update` (default);; Update refs directly using an atomic transaction.
+       All refs are updated or none are (all-or-nothing behavior).
+`print`;; Output update-ref commands for pipeline use. This is the
+       traditional behavior where output can be piped to `git update-ref --stdin`.
 --
 +
 The default mode can be configured via the `replay.refAction` configuration variable.