"Linus Arver via GitGitGadget" <gitgitgadget@xxxxxxxxx> writes: > From: Linus Arver <linusa@xxxxxxxxxx> > ... > @@ -1392,7 +1610,9 @@ test_expect_success 'with failing command using $ARG' ' > ' > > test_expect_success 'with empty tokens' ' > - git config --unset trailer.fix.command && > + test_config trailer.sign.command "echo \"\$GIT_AUTHOR_NAME <\$GIT_AUTHOR_EMAIL>\"" && > + test_config trailer.sign.key "Signed-off-by: " && > + test_config trailer.ifexists "addIfDifferent" && > cat >expected <<-EOF && > > Signed-off-by: A U Thor <author@xxxxxxxxxxx> In this test and some other places we get the chance to remove invocations of "git config --unset ..." (because we don't leak config state anymore). I will update the commit message accordingly in the next reroll.