diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2013-07-14 15:35:25 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-07-15 10:56:06 -0700 |
commit | 64acde94efd2906c3e20560c31c2957ac0b242c4 (patch) | |
tree | 57b1a8116f325b645c88c6e536cf9a06331e8aad /builtin | |
parent | clean: remove unused variable "seen" (diff) | |
download | tgif-64acde94efd2906c3e20560c31c2957ac0b242c4.tar.xz |
move struct pathspec and related functions to pathspec.[ch]
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 'builtin')
-rw-r--r-- | builtin/grep.c | 1 | ||||
-rw-r--r-- | builtin/ls-files.c | 1 | ||||
-rw-r--r-- | builtin/ls-tree.c | 1 | ||||
-rw-r--r-- | builtin/update-index.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/builtin/grep.c b/builtin/grep.c index 159e65d47a..4de49df917 100644 --- a/builtin/grep.c +++ b/builtin/grep.c @@ -17,6 +17,7 @@ #include "grep.h" #include "quote.h" #include "dir.h" +#include "pathspec.h" static char const * const grep_usage[] = { N_("git grep [options] [-e] <pattern> [<rev>...] [[--] <path>...]"), diff --git a/builtin/ls-files.c b/builtin/ls-files.c index 3a410c35d9..30357dfd55 100644 --- a/builtin/ls-files.c +++ b/builtin/ls-files.c @@ -13,6 +13,7 @@ #include "parse-options.h" #include "resolve-undo.h" #include "string-list.h" +#include "pathspec.h" static int abbrev; static int show_deleted; diff --git a/builtin/ls-tree.c b/builtin/ls-tree.c index fb76e38d84..93fc3a0e93 100644 --- a/builtin/ls-tree.c +++ b/builtin/ls-tree.c @@ -10,6 +10,7 @@ #include "quote.h" #include "builtin.h" #include "parse-options.h" +#include "pathspec.h" static int line_termination = '\n'; #define LS_RECURSIVE 1 diff --git a/builtin/update-index.c b/builtin/update-index.c index 5c7762eef4..b9c2bd0741 100644 --- a/builtin/update-index.c +++ b/builtin/update-index.c @@ -11,6 +11,7 @@ #include "refs.h" #include "resolve-undo.h" #include "parse-options.h" +#include "pathspec.h" /* * Default to not allowing changes to the list of files. The |