On Mon, Sep 06 2021, Bagas Sanjaya wrote: > On 06/09/21 14.33, Ævar Arnfjörð Bjarmason wrote: >> +test_expect_success $PREREQ 'sendemail.8bitEncoding in .git/config overrides --global .gitconfig' ' >> + clean_fake_sendmail && >> + git config sendemail.assume8bitEncoding UTF-8 && >> + test_when_finished "rm -rf home" && >> + mkdir home && >> + git config -f home/.gitconfig sendemail.assume8bitEncoding "bogus too" && >> + echo bogus | >> + env HOME="$(pwd)/home" DEBUG=1 \ >> + git send-email --from=author@xxxxxxxxxxx --to=nobody@xxxxxxxxxxx \ >> + --smtp-server="$(pwd)/fake.sendmail" \ >> + email-using-8bit >stdout && >> + egrep "Content|MIME" msgtxt1 >actual && >> + test_cmp content-type-decl actual >> +' >> + > > Did you mean overrides global .gitconfig (s/--global/global/)? I mean config set with the equivalent of "git config --global", but yeah this is probably an awkward way to phrase that. > Anyway, compiled and tested successfully (test suite passed). > > Tested-by: Bagas Sanjaya <bagasdotme@xxxxxxxxx> Thanks, FWIW the test suite passing doesn't mean much in this case, the only test that stresses this is the above. The issue being that the regression wasn't caught by any existing test...