]> git.ipfire.org Git - thirdparty/git.git/commitdiff
fetch: allow adding a filter after initial clone
authorXin Li <delphij@google.com>
Fri, 5 Jun 2020 09:10:02 +0000 (02:10 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 5 Jun 2020 17:13:30 +0000 (10:13 -0700)
Retroactively adding a filter can be useful for existing shallow clones as
they allow users to see earlier change histories without downloading all
git objects in a regular --unshallow fetch.

Without this patch, users can make a clone partial by editing the
repository configuration to convert the remote into a promisor, like:

  git config core.repositoryFormatVersion 1
  git config extensions.partialClone origin
  git fetch --unshallow --filter=blob:none origin

Since the hard part of making this work is already in place and such
edits can be error-prone, teach Git to perform the required configuration
change automatically instead.

Note that this change does not modify the existing git behavior which
recognizes setting extensions.partialClone without changing
repositoryFormatVersion.

Signed-off-by: Xin Li <delphij@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/fetch.c
t/t0410-partial-clone.sh
t/t1090-sparse-checkout-scope.sh
t/t5500-fetch-pack.sh
t/t5702-protocol-v2.sh

index b5788c16bf43da12c81525498cf056a9b828962e..3347d578ea1628004882d3df7a246ca441735e43 100644 (file)
@@ -1790,9 +1790,6 @@ int cmd_fetch(int argc, const char **argv, const char *prefix)
        if (depth || deepen_since || deepen_not.nr)
                deepen = 1;
 
-       if (filter_options.choice && !has_promisor_remote())
-               die("--filter can only be used when extensions.partialClone is set");
-
        if (all) {
                if (argc == 1)
                        die(_("fetch --all does not take a repository argument"));
index a3988bd4b8c893de246d12bf88e776c633550e24..16ad0003829333e3707152f2cd510f2c6a90b519 100755 (executable)
@@ -30,6 +30,18 @@ test_expect_success 'extensions.partialclone without filter' '
        git -C client fetch origin
 '
 
+test_expect_success 'convert shallow clone to partial clone' '
+       rm -fr server client &&
+       test_create_repo server &&
+       test_commit -C server my_commit 1 &&
+       test_commit -C server my_commit2 1 &&
+       git clone --depth=1 "file://$(pwd)/server" client &&
+       git -C client fetch --unshallow --filter="blob:none" &&
+       test_cmp_config -C client true remote.origin.promisor &&
+       test_cmp_config -C client blob:none remote.origin.partialclonefilter &&
+       test_cmp_config -C client 1 core.repositoryformatversion
+'
+
 test_expect_success 'missing reflog object, but promised by a commit, passes fsck' '
        rm -rf repo &&
        test_create_repo repo &&
index 40cc004326e2f0f66b74e2fbfa7d8a5cc21363a4..f35a73dd20654c82db3c2703373f521718c27766 100755 (executable)
@@ -63,7 +63,6 @@ test_expect_success 'in partial clone, sparse checkout only fetches needed blobs
        git -C server commit -m message &&
 
        test_config -C client core.sparsecheckout 1 &&
-       test_config -C client extensions.partialclone origin &&
        echo "!/*" >client/.git/info/sparse-checkout &&
        echo "/a" >>client/.git/info/sparse-checkout &&
        git -C client fetch --filter=blob:none origin &&
index 8c54e34ef11f37f5ab68c01f29656bbd896d3708..0f5ff2517905246789d780ff53ee00d62a8a67b6 100755 (executable)
@@ -999,7 +999,6 @@ fetch_filter_blob_limit_zero () {
        test_config -C "$SERVER" uploadpack.allowfilter 1 &&
 
        git clone "$URL" client &&
-       test_config -C client extensions.partialclone origin &&
 
        test_commit -C "$SERVER" two &&
 
index 5039e66dc47c0e28086454b5681ab102e1b4ecd4..8b27fad6cdcfd5686ad3a51afecf535d2a967544 100755 (executable)
@@ -348,7 +348,6 @@ test_expect_success 'partial fetch' '
        rm -rf client "$(pwd)/trace" &&
        git init client &&
        SERVER="file://$(pwd)/server" &&
-       test_config -C client extensions.partialClone "$SERVER" &&
 
        GIT_TRACE_PACKET="$(pwd)/trace" git -C client -c protocol.version=2 \
                fetch --filter=blob:none "$SERVER" master:refs/heads/other &&