kristofferhaugsbakk@xxxxxxxxxxxx writes: > From: Kristoffer Haugsbakk <code@xxxxxxxxxxxxxxx> > > Update git-config(1) according to the ps/config-subcommands series > (fe3ccc7aab (Merge branch 'ps/config-subcommands', 2024-05-15)): > > 1. Document `--show-names` > 2. Document `--value` > 3. Mention `--value` throughout instead of the deprecated > `value-pattern` > 4. Mention `--url` in the synopsis > > Kristoffer Haugsbakk (5): > doc: config: document --[no-]show-names > doc: config: use --value=<pattern> consistently > doc: config: document --[no-]value > doc: config: use --value instead of value-pattern > doc: config: mention --url in the synopsis > > Documentation/git-config.adoc | 28 +++++++++++++++++++++------- > 1 file changed, 21 insertions(+), 7 deletions(-) > > > base-commit: cf6f63ea6bf35173e02e18bdc6a4ba41288acff9 Have you run tests with this series, especially t0450? $ sh t0450-*.sh -i -v ... expecting success of 0450.142 'config -h output and SYNOPSIS agree': t2s="$(adoc_to_synopsis "$builtin")" && if test "$builtin" = "merge-tree" then test_when_finished "rm -f t2s.new" && sed -e 's/ (deprecated)$//g' <"$t2s" >t2s.new t2s=t2s.new fi && h2s="$(help_to_synopsis "$builtin")" && # The *.adoc and -h use different spacing for the # alignment of continued usage output, normalize it. align_after_nl "$builtin" <"$t2s" >adoc && align_after_nl "$builtin" <"$h2s" >help && test_cmp adoc help --- adoc 2025-06-30 23:09:02.715600047 +0000 +++ help 2025-06-30 23:09:02.723600026 +0000 @@ -1,7 +1,7 @@ git config list [<file-option>] [<display-option>] [--includes] -git config get [<file-option>] [<display-option>] [--includes] [--all] [--regexp] [--value=<pattern>] [--fixed-value] [--default=<default>] [--url=<url>] <name> -git config set [<file-option>] [--type=<type>] [--all] [--value=<pattern>] [--fixed-value] <name> <value> -git config unset [<file-option>] [--all] [--value=<pattern>] [--fixed-value] <name> +git config get [<file-option>] [<display-option>] [--includes] [--all] [--regexp] [--value=<value>] [--fixed-value] [--default=<default>] <name> +git config set [<file-option>] [--type=<type>] [--all] [--value=<value>] [--fixed-value] <name> <value> +git config unset [<file-option>] [--all] [--value=<value>] [--fixed-value] <name> git config rename-section [<file-option>] <old-name> <new-name> git config remove-section [<file-option>] <name> git config edit [<file-option>] not ok 142 - config -h output and SYNOPSIS agree # # t2s="$(adoc_to_synopsis "$builtin")" && # if test "$builtin" = "merge-tree" # then # test_when_finished "rm -f t2s.new" && # sed -e 's/ (deprecated)$//g' <"$t2s" >t2s.new # t2s=t2s.new # fi && # h2s="$(help_to_synopsis "$builtin")" && # # # The *.adoc and -h use different spacing for the # # alignment of continued usage output, normalize it. # align_after_nl "$builtin" <"$t2s" >adoc && # align_after_nl "$builtin" <"$h2s" >help && # test_cmp adoc help # 1..142