Re: [PATCH] doc: Make asciidoc bullet items separate
From: Patrick Steinhardt <hidden>
Date: 2026-09-07 08:46:14
On Mon, Sep 07, 2026 at 01:15:57AM -0600, Brigham Campbell wrote:
Fix conjoined bullet items in maintenance asciidoc file.
Not, probably not worth a reroll: it would have been nice to point out
that this is in git-config(1). E.g. something like this:
doc: fix conjoined maintenance strategies in git-config(1)
Fix conjoined bullet items for the maintennace strategies in
git-config(1).
quoted hunk ↗ jump to hunk
diff --git a/Documentation/config/maintenance.adoc b/Documentation/config/maintenance.adoc index da8be9f812..c778ab09ac 100644 --- a/Documentation/config/maintenance.adoc +++ b/Documentation/config/maintenance.adoc@@ -41,6 +41,7 @@ The possible strategies are: This repacking strategy is a full replacement for the `gc` strategy and is recommended for large repositories. This is the default strategy for manual maintenance. ++ * `incremental`: This setting optimizes for performing small maintenance activities that do not delete any data. This does not schedule the `gc` task, but runs the `prefetch` and `commit-graph` tasks hourly, the
Ah, indeed. I can confirm that this is misrendered when looking at git-config(1), and with your patch it indeed renders correctly. Thanks for this simple and obvious fix! Patrick