Philippe Blain <levraiphilippeblain@xxxxxxxxx> writes: > Hi Peff, >> ... >> diff --git a/t/t7502-commit-porcelain.sh b/t/t7502-commit-porcelain.sh >> index b5bf7de7cd..d8e216613f 100755 >> --- a/t/t7502-commit-porcelain.sh >> +++ b/t/t7502-commit-porcelain.sh >> @@ -485,6 +485,24 @@ test_expect_success 'commit --trailer not confused by --- separator' ' >> test_cmp expected actual >> ' >> >> +test_expect_success 'commit --trailer with --verbose' ' >> + cat >msg <<-\EOF && >> + subject >> + >> + body >> + EOF >> + GIT_EDITOR=: git commit --edit -F msg --allow-empty \ >> + --trailer="my-trailer: value" --verbose && >> + { >> + cat msg && >> + echo && >> + echo "my-trailer: value" >> + } >expected && >> + git cat-file commit HEAD >commit.msg && >> + sed -e "1,/^\$/d" commit.msg >actual && >> + test_cmp expected actual >> +' >> + >> test_expect_success 'multiple -m' ' >> >> >negative && > > Thanks for the test case! > > Philippe. Thanks, both, for finding a rather unfortunate regression. Perhaps it is worth delaying 2.44 final by a week or so to include a fix (or a revert if it comes to it).