aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2014-11-30 16:05:02 +0700
committerJunio C Hamano <gitster@pobox.com>2014-12-01 11:33:45 -0800
commit5c6cb9888df9d21ddbb5c3478d511edcdf3cda7c (patch)
tree09af6a1208486f08ac0a196947f98f3829b61794
parent1cf9952db243c624cc2763fa74e98adbb38537b1 (diff)
downloadgit-5c6cb9888df9d21ddbb5c3478d511edcdf3cda7c.tar.gz
git-5c6cb9888df9d21ddbb5c3478d511edcdf3cda7c.tar.xz
ls-tree: disable negative pathspec because it's not supported
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--builtin/ls-tree.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin/ls-tree.c b/builtin/ls-tree.c
index 053edb23a..3b04a0f08 100644
--- a/builtin/ls-tree.c
+++ b/builtin/ls-tree.c
@@ -174,7 +174,8 @@ int cmd_ls_tree(int argc, const char **argv, const char *prefix)
* cannot be lifted until it is converted to use
* match_pathspec() or tree_entry_interesting()
*/
- parse_pathspec(&pathspec, PATHSPEC_GLOB | PATHSPEC_ICASE,
+ parse_pathspec(&pathspec, PATHSPEC_GLOB | PATHSPEC_ICASE |
+ PATHSPEC_EXCLUDE,
PATHSPEC_PREFER_CWD,
prefix, argv + 1);
for (i = 0; i < pathspec.nr; i++)