Signed-off-by: i.Dark_Templar <darktemplar@xxxxxxxxxxxxxxxxxxxxxxxxx> --- Documentation/config/fmt-merge-msg.txt | 2 +- builtin/fmt-merge-msg.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/config/fmt-merge-msg.txt b/Documentation/config/fmt-merge-msg.txt index 3829095222..acd998cca8 100644 --- a/Documentation/config/fmt-merge-msg.txt +++ b/Documentation/config/fmt-merge-msg.txt @@ -10,7 +10,7 @@ merge.log:: true is a synonym for 20. merge.messageType:: - Configure default merge commit message type. `original` is used + Configure default merge commit message type. `autoselect` is used if no value or an invalid value is set. + * `original` keeps old merge commit message format which takes only one line. diff --git a/builtin/fmt-merge-msg.c b/builtin/fmt-merge-msg.c index 0bc6ce5b05..8fa39030d3 100644 --- a/builtin/fmt-merge-msg.c +++ b/builtin/fmt-merge-msg.c @@ -18,7 +18,7 @@ enum message_format { MESSAGE_FORMAT_ORIGINAL = 0, MESSAGE_FORMAT_MULTILINE = 1, MESSAGE_FORMAT_AUTOSELECT = 2, - MESSAGE_FORMAT_DEFAULT = MESSAGE_FORMAT_ORIGINAL + MESSAGE_FORMAT_DEFAULT = MESSAGE_FORMAT_AUTOSELECT }; static const char * const fmt_merge_msg_usage[] = { -- 2.24.1