]> git.ipfire.org Git - thirdparty/git.git/commit - config.c
config: fix --comment formatting
authorJunio C Hamano <gitster@pobox.com>
Fri, 15 Mar 2024 19:43:58 +0000 (12:43 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 15 Mar 2024 23:07:37 +0000 (16:07 -0700)
commitfbad334db9cff30cdf1fe3d498dec737bfae38df
treeaf08f0a5f5c0a7397344084df6a9a1d7106ee66d
parent42d5c033945e4fc41d7268bfe4284d37651986b8
config: fix --comment formatting

When git adds comments itself (like "rebase -i" todo list and
"commit -e" log message editor), it always gives a comment
introducer "#" followed by a Space before the message, except for
the recently introduced "git config --comment", where the users are
forced to say " this is my comment" if they want to add their
comment in this usual format; otherwise their comment string will
end up without a space after the "#".

Make it more ergonomic, while keeping it possible to also use this
unusual style, by massaging the comment string at the UI layer with
a set of simple rules:

 * If the given comment string begins with '#', it is passed intact.
 * Otherwise, "# " is prefixed.
 * A string with LF in it cannot be used as a comment string.

Right now there is only one "front-end" that accepts end-user
comment string and calls the underlying machinery to add or modify
configuration file with comments, but to make sure that the future
callers perform similar massaging as they see fit, add a sanity
check logic in git_config_set_multivar_in_file_gently(), which is
the single choke point in the codepaths that consumes the comment
string.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-config.txt
builtin/config.c
config.c
t/t1300-config.sh