diff options
author | Jens Lehmann <Jens.Lehmann@web.de> | 2011-01-31 17:51:25 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-01-31 09:59:04 -0800 |
commit | a2a564686feddb290afa79c7c18e7939b8ac064e (patch) | |
tree | 5205d999e50ffeba8688c4558051ae9c9a2faa67 /t | |
parent | 1c1f3537c0283c92abbca9155813ed62b05cb481 (diff) | |
download | git-a2a564686feddb290afa79c7c18e7939b8ac064e.tar.gz git-a2a564686feddb290afa79c7c18e7939b8ac064e.tar.xz |
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 <Jens.Lehmann@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | 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 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 && |