From: Jens Lehmann Date: Mon, 31 Jan 2011 16:51:25 +0000 (+0100) Subject: t5526: Fix wrong argument order in "git config" X-Git-Tag: v1.7.4.1~20^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a2a564686feddb290afa79c7c18e7939b8ac064e;p=git.git t5526: Fix wrong argument order in "git config" 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 Signed-off-by: Junio C Hamano --- diff --git a/t/t5526-fetch-submodules.sh b/t/t5526-fetch-submodules.sh index 884a5e567..a5f458533 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 &&