> On 26/02/22 12.34, Matheus Felipe via GitGitGadget wrote: > > > From: Matheus Felipe matheusfelipeog@xxxxxxxxxxxxxx > > When the `git config --global --help` command is invoked, > > the cli documentation is shown in the terminal with a small > > error in one of the values of the Type group, which is the > > absence of the type flag in the `--type` argument. > > This commit fixes that. > > What about the commit message below? > > ``` > The usage help for --type option of `git config` is missing `type` > in the argument placeholder (`<>`). Add it. > ``` This commit message just got better, thanks. I will update with this message. > > - OPT_CALLBACK('t', "type", &type, "", N_("value is given this type"), option_parse_type), > > + OPT_CALLBACK('t', "type", &type, N_("type"), N_("value is given this type"), option_parse_type), > > The help should be `give the value the specified type`. About the help message, I believe the current one is adequate, as Junio C Hamano well described. It is also worth remembering that PR proposes a change from "" to "type" only, as recalled by Ævar Arnfjörð Bjarmason.