summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristoffer Haugsbakk <code@khaugsbakk.name>2025-08-08 15:43:12 +0200
committerJunio C Hamano <gitster@pobox.com>2025-08-08 09:14:46 -0700
commit823d537fa7bd35a5218ef2f625a8e4598c47cd3a (patch)
tree6bbe31dc37576f775cefc781009a276ae1f92bbb
parentb27be108c89cc57ce068719a82266020436a478b (diff)
doc: git-log: fix description list
b27be108c89 (doc: git-log: convert log config to new doc format, 2025-07-07) intended to convert a paragraph describing the different options for `log.decorate` into a description list. But the literal block syntax was used by mistake. Signed-off-by: Kristoffer Haugsbakk <code@khaugsbakk.name> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--Documentation/config/log.adoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/config/log.adoc b/Documentation/config/log.adoc
index 16e00e8d29..f20cc25cd7 100644
--- a/Documentation/config/log.adoc
+++ b/Documentation/config/log.adoc
@@ -23,14 +23,14 @@ be used.
Print out the ref names of any commits that are shown by the log
command. Possible values are:
+
-----
+--
`short`;; the ref name prefixes `refs/heads/`, `refs/tags/` and
`refs/remotes/` are not printed.
`full`;; the full ref name (including prefix) are printed.
`auto`;; if the output is going to a terminal,
the ref names are shown as if `short` were given, otherwise no ref
names are shown.
-----
+--
+
This is the same as the `--decorate` option of the `git log`.