Skip to content

Commit 3718226

Browse files
LemmingAvalanchegitster
authored andcommitted
interpret-trailers: use placeholder instead of *
Use `<key-alias>` instead of `*` in order to be consistent with the documentation. Signed-off-by: Kristoffer Haugsbakk <code@khaugsbakk.name> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 95bd867 commit 3718226

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

builtin/interpret-trailers.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ int cmd_interpret_trailers(int argc,
211211
N_("action if trailer is missing"), option_parse_if_missing),
212212

213213
OPT_BOOL(0, "only-trailers", &opts.only_trailers, N_("output only the trailers")),
214-
OPT_BOOL(0, "only-input", &opts.only_input, N_("do not apply trailer.* configuration variables")),
214+
OPT_BOOL(0, "only-input", &opts.only_input, N_("do not apply trailer.<key-alias> configuration variables")),
215215
OPT_BOOL(0, "unfold", &opts.unfold, N_("reformat multiline trailer values as single-line values")),
216216
OPT_CALLBACK_F(0, "parse", &opts, NULL, N_("alias for --only-trailers --only-input --unfold"),
217217
PARSE_OPT_NOARG | PARSE_OPT_NONEG, parse_opt_parse),

0 commit comments

Comments
 (0)