]> git.ipfire.org Git - thirdparty/git.git/commit - dir.c
ls-files: add pathspec matching for submodules
authorBrandon Williams <bmwill@google.com>
Fri, 7 Oct 2016 18:18:51 +0000 (11:18 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 10 Oct 2016 19:14:58 +0000 (12:14 -0700)
commit75a6315f7416a2fd559d0b0c7352b4f1cd10e186
tree55917b990573d03edc34972d2cae484da819d5fb
parent07c01b9fd927b35375bd3a7d4d9dbf7bb8509f09
ls-files: add pathspec matching for submodules

Pathspecs can be a bit tricky when trying to apply them to submodules.
The main challenge is that the pathspecs will be with respect to the
superproject and not with respect to paths in the submodule.  The
approach this patch takes is to pass in the identical pathspec from the
superproject to the submodule in addition to the submodule-prefix, which
is the path from the root of the superproject to the submodule, and then
we can compare an entry in the submodule prepended with the
submodule-prefix to the pathspec in order to determine if there is a
match.

This patch also permits the pathspec logic to perform a prefix match against
submodules since a pathspec could refer to a file inside of a submodule.
Due to limitations in the wildmatch logic, a prefix match is only done
literally.  If any wildcard character is encountered we'll simply punt
and produce a false positive match.  More accurate matching will be done
once inside the submodule.  This is due to the superproject not knowing
what files could exist in the submodule.

Signed-off-by: Brandon Williams <bmwill@google.com>
Reviewed-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-ls-files.txt
builtin/ls-files.c
dir.c
dir.h
t/t3007-ls-files-recurse-submodules.sh