On Tue, Nov 24 2020, Patrick Steinhardt wrote: > +test_expect_success 'command line overrides environment config' ' > + GIT_CONFIG_COUNT=1 GIT_CONFIG_KEY_0=pair.one GIT_CONFIG_VALUE_0=value \ > + git -c pair.one=override config pair.one >actual && > + cat >expect <<-EOF && > + override > + EOF > + test_cmp expect actual > +' > + Maybe a test to see which one of this new-style key-value thing v.s. GIT_CONFIG_PARAMETERS wins? Helps if/when we ever refactor this to at least see the behavior of the purely internal thing changed.