summaryrefslogtreecommitdiff
path: root/pathspec.h
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2013-12-06 07:30:48 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-12-06 21:00:39 (GMT)
commitef79b1f8704668a6cdf4278f9255e03ca785bfb4 (patch)
treef74ee3986aee50992cab9fcf16fcac3e55abe551 /pathspec.h
parent8b7cb51a9dda0debf48c62ae79b9d60a23507097 (diff)
downloadgit-ef79b1f8704668a6cdf4278f9255e03ca785bfb4.zip
git-ef79b1f8704668a6cdf4278f9255e03ca785bfb4.tar.gz
git-ef79b1f8704668a6cdf4278f9255e03ca785bfb4.tar.bz2
Support pathspec magic :(exclude) and its short form :!
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pathspec.h')
-rw-r--r--pathspec.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/pathspec.h b/pathspec.h
index a75e924..0c11262 100644
--- a/pathspec.h
+++ b/pathspec.h
@@ -7,12 +7,14 @@
#define PATHSPEC_LITERAL (1<<2)
#define PATHSPEC_GLOB (1<<3)
#define PATHSPEC_ICASE (1<<4)
+#define PATHSPEC_EXCLUDE (1<<5)
#define PATHSPEC_ALL_MAGIC \
(PATHSPEC_FROMTOP | \
PATHSPEC_MAXDEPTH | \
PATHSPEC_LITERAL | \
PATHSPEC_GLOB | \
- PATHSPEC_ICASE)
+ PATHSPEC_ICASE | \
+ PATHSPEC_EXCLUDE)
#define PATHSPEC_ONESTAR 1 /* the pathspec pattern satisfies GFNM_ONESTAR */