summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Arver <linusa@google.com>2023-09-07 22:20:02 +0000
committerJunio C Hamano <gitster@pobox.com>2023-09-07 23:04:44 -0700
commitb674f25b81b7d6cb1136a5a47d917b0d289e8d26 (patch)
treefc77373fe2411ac52a475550ab4d7ce34619a40f
parenttrailer: trailer location is a place, not an action (diff)
downloadgit-b674f25b81b7d6cb1136a5a47d917b0d289e8d26.tar.gz
git-b674f25b81b7d6cb1136a5a47d917b0d289e8d26.zip
trailer --no-divider help: describe usual "---" meaning
It's unclear what treating something "specially" means. Signed-off-by: Linus Arver <linusa@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--builtin/interpret-trailers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/interpret-trailers.c b/builtin/interpret-trailers.c
index cf4f703c4e..a7623dbfb2 100644
--- a/builtin/interpret-trailers.c
+++ b/builtin/interpret-trailers.c
@@ -109,7 +109,7 @@ int cmd_interpret_trailers(int argc, const char **argv, const char *prefix)
OPT_BOOL(0, "unfold", &opts.unfold, N_("join whitespace-continued values")),
OPT_CALLBACK_F(0, "parse", &opts, NULL, N_("set parsing options"),
PARSE_OPT_NOARG | PARSE_OPT_NONEG, parse_opt_parse),
- OPT_BOOL(0, "no-divider", &opts.no_divider, N_("do not treat --- specially")),
+ OPT_BOOL(0, "no-divider", &opts.no_divider, N_("do not treat \"---\" as the end of input")),
OPT_CALLBACK(0, "trailer", &trailers, N_("trailer"),
N_("trailer(s) to add"), option_parse_trailer),
OPT_END()