diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-10-05 14:01:53 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-10-05 14:01:53 -0700 |
commit | e68f0a4e574f38beeac513e824b685965dda31b7 (patch) | |
tree | 91c653dc49ef9a5e1b9d6f5354823d93f480540c /t/t5601-clone.sh | |
parent | Merge branch 'td/submodule-update-quiet' (diff) | |
parent | fetch: do not override partial clone filter (diff) | |
download | tgif-e68f0a4e574f38beeac513e824b685965dda31b7.tar.xz |
Merge branch 'jt/keep-partial-clone-filter-upon-lazy-fetch'
The lazy fetching done internally to make missing objects available
in a partial clone incorrectly made permanent damage to the partial
clone filter in the repository, which has been corrected.
* jt/keep-partial-clone-filter-upon-lazy-fetch:
fetch: do not override partial clone filter
promisor-remote: remove unused variable
Diffstat (limited to 't/t5601-clone.sh')
-rwxr-xr-x | t/t5601-clone.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/t5601-clone.sh b/t/t5601-clone.sh index b6c8312da1..7df3c5373a 100755 --- a/t/t5601-clone.sh +++ b/t/t5601-clone.sh @@ -683,7 +683,8 @@ test_expect_success 'partial clone' ' test_expect_success 'partial clone with -o' ' partial_clone_server server && - git clone -o blah --filter=blob:limit=0 "file://$(pwd)/server" client + git clone -o blah --filter=blob:limit=0 "file://$(pwd)/server" client && + test_cmp_config -C client "blob:limit=0" --get-all remote.blah.partialclonefilter ' test_expect_success 'partial clone: warn if server does not support object filtering' ' |