Merge branch 'mg/sequencer-commit-messages-always-verbatim'
"git cherry-pick" used to clean-up the log message even when it is merely replaying an existing commit. It now replays the message verbatim unless you are editing the message of resulting commits. * mg/sequencer-commit-messages-always-verbatim: sequencer: preserve commit messages
This commit is contained in:
@ -373,6 +373,7 @@ static int run_git_commit(const char *defmsg, struct replay_opts *opts,
|
||||
{
|
||||
struct argv_array array;
|
||||
int rc;
|
||||
const char *value;
|
||||
|
||||
argv_array_init(&array);
|
||||
argv_array_push(&array, "commit");
|
||||
@ -385,6 +386,10 @@ static int run_git_commit(const char *defmsg, struct replay_opts *opts,
|
||||
if (!opts->edit) {
|
||||
argv_array_push(&array, "-F");
|
||||
argv_array_push(&array, defmsg);
|
||||
if (!opts->signoff &&
|
||||
!opts->record_origin &&
|
||||
git_config_get_value("commit.cleanup", &value))
|
||||
argv_array_push(&array, "--cleanup=verbatim");
|
||||
}
|
||||
|
||||
if (allow_empty)
|
||||
|
Reference in New Issue
Block a user