diff options
author | Christian Couder <christian.couder@gmail.com> | 2019-06-25 15:40:32 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-06-25 23:05:37 +0200 |
commit | fa3d1b63e866d6b893934ab69da10b4516150cdc (patch) | |
tree | 1c2d2ea0f162fb34e10a9c46f97897768e029e97 /t/t0410-partial-clone.sh | |
parent | Use promisor_remote_get_direct() and has_promisor_remote() (diff) | |
download | git-fa3d1b63e866d6b893934ab69da10b4516150cdc.tar.xz git-fa3d1b63e866d6b893934ab69da10b4516150cdc.zip |
promisor-remote: parse remote.*.partialclonefilter
This makes it possible to specify a different partial clone
filter for each promisor remote.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t0410-partial-clone.sh')
-rwxr-xr-x | t/t0410-partial-clone.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t0410-partial-clone.sh b/t/t0410-partial-clone.sh index 3559313bd0..3082eff2bf 100755 --- a/t/t0410-partial-clone.sh +++ b/t/t0410-partial-clone.sh @@ -26,7 +26,7 @@ promise_and_delete () { test_expect_success 'extensions.partialclone without filter' ' test_create_repo server && git clone --filter="blob:none" "file://$(pwd)/server" client && - git -C client config --unset core.partialclonefilter && + git -C client config --unset remote.origin.partialclonefilter && git -C client fetch origin ' |