diff options
author | Matheus Tavares <matheus.bernardino@usp.br> | 2021-04-08 17:41:28 -0300 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-04-08 14:18:03 -0700 |
commit | d5f4b8260f623d6fdef36d5eaa8a0c2350390472 (patch) | |
tree | 60de9c3ff1ee4936bbb0e8eb231731ea52de4c29 /Documentation/config | |
parent | add: warn when asked to update SKIP_WORKTREE entries (diff) | |
download | tgif-d5f4b8260f623d6fdef36d5eaa8a0c2350390472.tar.xz |
rm: honor sparse checkout patterns
`git add` refrains from adding or updating index entries that are
outside the current sparse checkout, but `git rm` doesn't follow the
same restriction. This is somewhat counter-intuitive and inconsistent.
So make `rm` honor the sparsity rules and advise on how to remove
SKIP_WORKTREE entries just like `add` does. Also add some tests for the
new behavior.
Suggested-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Matheus Tavares <matheus.bernardino@usp.br>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/config')
-rw-r--r-- | Documentation/config/advice.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Documentation/config/advice.txt b/Documentation/config/advice.txt index 851b83cf30..8b2849ff7b 100644 --- a/Documentation/config/advice.txt +++ b/Documentation/config/advice.txt @@ -120,6 +120,7 @@ advice.*:: Advice shown if a user runs the add command without providing the pathspec parameter. updateSparsePath:: - Advice shown when linkgit:git-add[1] is asked to update index - entries outside the current sparse checkout. + Advice shown when either linkgit:git-add[1] or linkgit:git-rm[1] + is asked to update index entries outside the current sparse + checkout. -- |