summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerrick Stolee <stolee@gmail.com>2025-10-20 10:24:04 -0400
committerJunio C Hamano <gitster@pobox.com>2025-10-20 09:20:50 -0700
commitc32aa72466ec9da5762ef56f70ec10b42cab65da (patch)
tree65e1184745e53e152c58b5f303a23af1bdf8a8ff
parent592d2a93af8a0af047d2212004ca474855096d5f (diff)
sparse-index: improve advice message instructions
When an on-disk sparse index is expanded to a full one, it could be due to some worktree state that requires looking at file entries hidden within sparse tree entries. This can be avoided if the worktree is cleaned up and some other issues related to the index state are resolved. Expand the advice message to include all of these cases, since 'git sparse-checkout clean' is not currently capable of handling all cases. In the future, we may improve the behavior of 'git sparse-checkout clean' to handle all of the cases. Helped-by: Elijah Newren <newren@gmail.com> Signed-off-by: Derrick Stolee <stolee@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--sparse-index.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sparse-index.c b/sparse-index.c
index 5d14795063..76f90da5f5 100644
--- a/sparse-index.c
+++ b/sparse-index.c
@@ -32,8 +32,9 @@ int give_advice_on_expansion = 1;
"Your working directory likely has contents that are outside of\n" \
"your sparse-checkout patterns. Use 'git sparse-checkout list' to\n" \
"see your sparse-checkout definition and compare it to your working\n" \
- "directory contents. Running 'git sparse-checkout clean' may assist\n" \
- "in this cleanup."
+ "directory contents. Cleaning up any merge conflicts or staged\n" \
+ "changes before running 'git sparse-checkout clean' or 'git\n" \
+ "sparse-checkout reapply' may assist in this cleanup."
struct modify_index_context {
struct index_state *write;