]> git.ipfire.org Git - thirdparty/git.git/commitdiff
sparse-checkout: refuse to add to bad patterns
authorDerrick Stolee <dstolee@microsoft.com>
Thu, 16 Dec 2021 16:13:42 +0000 (16:13 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 30 Dec 2021 22:39:57 +0000 (14:39 -0800)
When in cone mode sparse-checkout, it is unclear how 'git
sparse-checkout add <dir1> ...' should behave if the existing
sparse-checkout file does not match the cone mode patterns. Change the
behavior to fail with an error message about the existing patterns.

Also, all cone mode patterns start with a '/' character, so add that
restriction. This is necessary for our example test 'cone mode: warn on
bad pattern', but also requires modifying the example sparse-checkout
file we use to test the warnings related to recognizing cone mode
patterns.

This error checking would cause a failure further down the test script
because of a test that adds non-cone mode patterns without cleaning them
up. Perform that cleanup as part of the test now.

Reviewed-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/sparse-checkout.c
dir.c
t/t1091-sparse-checkout-builtin.sh

index 9ccdcde9832e93a8cf771cb8565d01d42dc76eed..6580075a63181dc1359e72264761c36217699e2e 100644 (file)
@@ -598,6 +598,9 @@ static void add_patterns_cone_mode(int argc, const char **argv,
                die(_("unable to load existing sparse-checkout patterns"));
        free(sparse_filename);
 
+       if (!existing.use_cone_patterns)
+               die(_("existing sparse-checkout patterns do not use cone mode"));
+
        hashmap_for_each_entry(&existing.recursive_hashmap, &iter, pe, ent) {
                if (!hashmap_contains_parent(&pl->recursive_hashmap,
                                        pe->pattern, &buffer) ||
diff --git a/dir.c b/dir.c
index 7e72958d51dabbb93ab9cbd5ec7399a4da6b193c..eca75e89213ec89724b664cc5694e3984a07036e 100644 (file)
--- a/dir.c
+++ b/dir.c
@@ -727,7 +727,7 @@ static void add_pattern_to_hashsets(struct pattern_list *pl, struct path_pattern
        }
 
        if (given->patternlen < 2 ||
-           *given->pattern == '*' ||
+           *given->pattern != '/' ||
            strstr(given->pattern, "**")) {
                /* Not a cone pattern. */
                warning(_("unrecognized pattern: '%s'"), given->pattern);
index 1f877ced0c887c51f63c28aa38b3185a9afe80c9..34b97fd3ee0857266894056b4dbe1046973dcc25 100755 (executable)
@@ -110,7 +110,8 @@ test_expect_success 'switching to cone mode with non-cone mode patterns' '
                git sparse-checkout init &&
                git sparse-checkout add dir &&
                git config core.sparseCheckoutCone true &&
-               git sparse-checkout add dir
+               test_must_fail git sparse-checkout add dir 2>err &&
+               grep "existing sparse-checkout patterns do not use cone mode" err
        )
 '
 
@@ -176,12 +177,14 @@ test_expect_success 'set sparse-checkout using --stdin' '
 '
 
 test_expect_success 'add to sparse-checkout' '
-       cat repo/.git/info/sparse-checkout >expect &&
+       cat repo/.git/info/sparse-checkout >old &&
+       test_when_finished cp old repo/.git/info/sparse-checkout &&
        cat >add <<-\EOF &&
        pattern1
        /folder1/
        pattern2
        EOF
+       cat old >expect &&
        cat add >>expect &&
        git -C repo sparse-checkout add --stdin <add &&
        git -C repo sparse-checkout list >actual &&