Jens Lehmann <Jens.Lehmann@xxxxxx> writes: > This fixes a typo where the "git config" arguments "-f" and "--unset" were > swapped leading to the creation of a "--unset" file. > > Signed-off-by: Jens Lehmann <Jens.Lehmann@xxxxxx> > --- > > Now that 1.7.4 is out and somebody else already stumbled across this > typo I introduced ... Thanks. > > t/t5526-fetch-submodules.sh | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/t/t5526-fetch-submodules.sh b/t/t5526-fetch-submodules.sh > index 884a5e5..a5f4585 100755 > --- a/t/t5526-fetch-submodules.sh > +++ b/t/t5526-fetch-submodules.sh > @@ -124,7 +124,7 @@ test_expect_success "--recurse-submodules overrides fetchRecurseSubmodules setti > ( > cd downstream && > git fetch --recurse-submodules >../actual.out 2>../actual.err && > - git config -f --unset .gitmodules submodule.submodule.fetchRecurseSubmodules true && > + git config --unset -f .gitmodules submodule.submodule.fetchRecurseSubmodules && > git config --unset submodule.submodule.fetchRecurseSubmodules > ) && > test_cmp expect.out actual.out && > -- > 1.7.3.4.27.g3921d.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html