unpack-trees: provide warnings on sparse updates for unmerged paths too
authorElijah Newren <redacted>
Fri, 27 Mar 2020 00:48:59 +0000 (00:48 +0000)
committerJunio C Hamano <redacted>
Fri, 27 Mar 2020 18:33:30 +0000 (11:33 -0700)
When sparse-checkout runs to update the list of sparsity patterns, it
gives warnings if it can't remove paths from the working tree because
those files have dirty changes.  Add a similar warning for unmerged
paths as well.

Reviewed-by: Derrick Stolee <redacted>
Signed-off-by: Elijah Newren <redacted>
Signed-off-by: Junio C Hamano <redacted>
t/t1091-sparse-checkout-builtin.sh
unpack-trees.c
unpack-trees.h

index afbde89e6055118057b695de3a93ae3a05711118..8e2976bc7b8f072cd9379263fb6f18793611c3e9 100755 (executable)
@@ -345,6 +345,31 @@ test_expect_success 'sparse-checkout (init|set|disable) warns with dirty status'
        test_path_is_file dirty/folder1/a
 '
 
+test_expect_success 'sparse-checkout (init|set|disable) warns with unmerged status' '
+       git clone repo unmerged &&
+
+       cat >input <<-EOF &&
+       0 0000000000000000000000000000000000000000      folder1/a
+       100644 $(git -C unmerged rev-parse HEAD:folder1/a) 1    folder1/a
+       EOF
+       git -C unmerged update-index --index-info <input &&
+
+       git -C unmerged sparse-checkout init 2>err &&
+       test_i18ngrep "warning.*The following paths are unmerged" err &&
+
+       git -C unmerged sparse-checkout set /folder2/* /deep/deeper1/* 2>err &&
+       test_i18ngrep "warning.*The following paths are unmerged" err &&
+       test_path_is_file dirty/folder1/a &&
+
+       git -C unmerged sparse-checkout disable 2>err &&
+       test_i18ngrep "warning.*The following paths are unmerged" err &&
+
+       git -C unmerged reset --hard &&
+       git -C unmerged sparse-checkout init &&
+       git -C unmerged sparse-checkout set /folder2/* /deep/deeper1/* &&
+       git -C unmerged sparse-checkout disable
+'
+
 test_expect_success 'cone mode: set with core.ignoreCase=true' '
        rm repo/.git/info/sparse-checkout &&
        git -C repo sparse-checkout init --cone &&
index 484d30a53a74908c84033d3060dc55543cf773d2..dec044339dfba9aa836d2422dadcd2b81f691f04 100644 (file)
@@ -52,6 +52,9 @@ static const char *unpack_plumbing_errors[NB_UNPACK_TREES_WARNING_TYPES] = {
        /* WARNING_SPARSE_NOT_UPTODATE_FILE */
        "Path '%s' not uptodate; will not remove from working tree.",
 
+       /* WARNING_SPARSE_UNMERGED_FILE */
+       "Path '%s' unmerged; will not remove from working tree.",
+
        /* WARNING_SPARSE_ORPHANED_NOT_OVERWRITTEN */
        "Path '%s' already present; will not overwrite with sparse update.",
 };
@@ -173,6 +176,8 @@ void setup_unpack_trees_porcelain(struct unpack_trees_options *opts,
 
        msgs[WARNING_SPARSE_NOT_UPTODATE_FILE] =
                _("The following paths are not up to date and were left despite sparse patterns:\n%s");
+       msgs[WARNING_SPARSE_UNMERGED_FILE] =
+               _("The following paths are unmerged and were left despite sparse patterns:\n%s");
        msgs[WARNING_SPARSE_ORPHANED_NOT_OVERWRITTEN] =
                _("The following paths were already present and thus not updated despite sparse patterns:\n%s");
 
@@ -548,6 +553,23 @@ static int apply_sparse_checkout(struct index_state *istate,
        return 0;
 }
 
+static int warn_conflicted_path(struct index_state *istate,
+                               int i,
+                               struct unpack_trees_options *o)
+{
+       char *conflicting_path = istate->cache[i]->name;
+       int count = 0;
+
+       add_rejected_path(o, WARNING_SPARSE_UNMERGED_FILE, conflicting_path);
+
+       /* Find out how many higher stage entries at same path */
+       while (++count < istate->cache_nr &&
+              !strcmp(conflicting_path,
+                      istate->cache[i+count]->name))
+               /* do nothing */;
+       return count;
+}
+
 static inline int call_unpack_fn(const struct cache_entry * const *src,
                                 struct unpack_trees_options *o)
 {
@@ -1793,6 +1815,14 @@ enum update_sparsity_result update_sparsity(struct unpack_trees_options *o)
        for (i = 0; i < o->src_index->cache_nr; i++) {
                struct cache_entry *ce = o->src_index->cache[i];
 
+
+               if (ce_stage(ce)) {
+                       /* -1 because for loop will increment by 1 */
+                       i += warn_conflicted_path(o->src_index, i, o) - 1;
+                       ret = UPDATE_SPARSITY_WARNINGS;
+                       continue;
+               }
+
                if (apply_sparse_checkout(o->src_index, ce, o))
                        ret = UPDATE_SPARSITY_WARNINGS;
 
index dae948205f911b0f380f496c3ed5573c0e5526ac..0f7424aec614f9972df8e1b0521f60a4dd34bdf2 100644 (file)
@@ -27,6 +27,7 @@ enum unpack_trees_error_types {
        NB_UNPACK_TREES_ERROR_TYPES,
 
        WARNING_SPARSE_NOT_UPTODATE_FILE,
+       WARNING_SPARSE_UNMERGED_FILE,
        WARNING_SPARSE_ORPHANED_NOT_OVERWRITTEN,
 
        NB_UNPACK_TREES_WARNING_TYPES,
git clone https://git.99rst.org/PROJECT