Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
t5526: Fix wrong argument order in "git config"
author
Jens Lehmann
<Jens.Lehmann@web.de>
Mon, 31 Jan 2011 16:51:25 +0000
(17:51 +0100)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 31 Jan 2011 17:59:04 +0000
(09:59 -0800)
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>
t/t5526-fetch-submodules.sh
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
1c1f353
)
diff --git
a/t/t5526-fetch-submodules.sh
b/t/t5526-fetch-submodules.sh
index 884a5e567c308e976ce50036dc93c3932b717603..a5f458533fd071c13550a72bf251e2e10c109637 100755
(executable)
--- 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 &&