diff options
author | Taylor Blau <me@ttaylorr.com> | 2022-07-29 21:21:06 +0200 |
---|---|---|
committer | Taylor Blau <me@ttaylorr.com> | 2022-10-01 06:23:38 +0200 |
commit | 225d2d50ccef4baae410a96b9dc9e3978d164826 (patch) | |
tree | ad10a20a2837176b6191621912ba0cdca5e84110 /t/t5545-push-options.sh | |
parent | t/t4NNN: allow local submodules (diff) | |
download | git-225d2d50ccef4baae410a96b9dc9e3978d164826.tar.xz git-225d2d50ccef4baae410a96b9dc9e3978d164826.zip |
t/t5NNN: allow local submodules
To prepare for the default value of `protocol.file.allow` to change to
"user", ensure tests that rely on local submodules can initialize them
over the file protocol.
Tests that only need to interact with submodules in a limited capacity
have individual Git commands annotated with the appropriate
configuration via `-c`. Tests that interact with submodules a handful of
times use `test_config_global` instead. Test scripts that rely on
submodules throughout use a `git config --global` during a setup test
towards the beginning of the script.
Signed-off-by: Taylor Blau <me@ttaylorr.com>
Diffstat (limited to 't/t5545-push-options.sh')
-rwxr-xr-x | t/t5545-push-options.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/t5545-push-options.sh b/t/t5545-push-options.sh index 38e6f7340e..77ce917cdd 100755 --- a/t/t5545-push-options.sh +++ b/t/t5545-push-options.sh @@ -113,6 +113,7 @@ test_expect_success 'push options and submodules' ' test_commit -C parent one && git -C parent push --mirror up && + test_config_global protocol.file.allow always && git -C parent submodule add ../upstream workbench && git -C parent/workbench remote add up ../../upstream && git -C parent commit -m "add submodule" && |