aboutsummaryrefslogtreecommitdiff
path: root/builtin/ls-tree.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-01-05 23:40:15 -0800
committerJunio C Hamano <gitster@pobox.com>2013-01-05 23:40:15 -0800
commit990a4fea96983d54c0dcc96352e4c86404eceb77 (patch)
treed6acc2d8d42d9b75101bbfe7904955356913b7dc /builtin/ls-tree.c
parentd65d991b6543d8dcc8d10dd99a92a63693bcd54e (diff)
parentc904cd89e4328c0b5041b6ee0bb2df32459a33a2 (diff)
downloadgit-990a4fea96983d54c0dcc96352e4c86404eceb77.tar.gz
git-990a4fea96983d54c0dcc96352e4c86404eceb77.tar.xz
Merge branch 'nd/pathspec-wildcard'
Optimize matching paths with common forms of pathspecs that contain wildcard characters. * nd/pathspec-wildcard: tree_entry_interesting: do basedir compare on wildcard patterns when possible pathspec: apply "*.c" optimization from exclude pathspec: do exact comparison on the leading non-wildcard part pathspec: save the non-wildcard length part
Diffstat (limited to 'builtin/ls-tree.c')
-rw-r--r--builtin/ls-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/ls-tree.c b/builtin/ls-tree.c
index 235c17cc0..fb76e38d8 100644
--- a/builtin/ls-tree.c
+++ b/builtin/ls-tree.c
@@ -168,7 +168,7 @@ int cmd_ls_tree(int argc, const char **argv, const char *prefix)
init_pathspec(&pathspec, get_pathspec(prefix, argv + 1));
for (i = 0; i < pathspec.nr; i++)
- pathspec.items[i].use_wildcard = 0;
+ pathspec.items[i].nowildcard_len = pathspec.items[i].len;
pathspec.has_wildcard = 0;
tree = parse_tree_indirect(sha1);
if (!tree)