replay: drop rev-list formatting options from manual

The rev-list options in our manuals are quite long; git-replay's manual is no exception. Since replay doesn't use the formatting options at all (it has its own output format), drop them. This is the first time we have needed compound tests [1] for if[n]def in our documentation: git grep '^ifn\?def::' Documentation | grep '[,+]' [1]: https://docs.asciidoctor.org/asciidoc/latest/directives/ifdef-ifndef/ For both ifdef and ifndef, the "," takes on the intuitive meaning: - ifdef: if any of the listed attributes are set… - ifndef: unless any of the listed attributes are set (Use "+" for "all".) Signed-off-by: D. Ben Knoble <ben.knoble+github@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

D. Ben Knoble committed Jan 20, 2026 at 09:05 UTC ad228c24df15e96f98737a9751a455e278b62fcb
2 files changed +3 -2
Documentation/git-replay.adoc
+1
@@ -64,6 +64,7 @@ The default mode can be configured via the `replay.refAction` configuration vari
64 range should have a single tip, so that it's clear to which tip the
65 advanced <branch> should point.
66
67 +:git-replay: 1
68 include::rev-list-options.adoc[]
69
70 [[output]]
Documentation/rev-list-options.adoc
+2 -2
@@ -1096,7 +1096,7 @@ endif::git-rev-list[]
1096 Overrides a previous `--no-walk`.
1097 endif::git-shortlog[]
1098
1099 -ifndef::git-shortlog[]
1099 +ifndef::git-shortlog,git-replay[]
1100 Commit Formatting
1101 ~~~~~~~~~~~~~~~~~
1102
@@ -1265,4 +1265,4 @@ ifdef::git-rev-list[]
1265 counts and print the count for equivalent commits separated
1266 by a tab.
1267 endif::git-rev-list[]
1268 -endif::git-shortlog[]
1268 +endif::git-shortlog,git-replay[]