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/grep.c | |
parent | 5fee4df7f43e52eed19da3529bc50735c6dcd58e (diff) | |
download | git-64acde94efd2906c3e20560c31c2957ac0b242c4.tar.gz git-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/grep.c')
-rw-r--r-- | builtin/grep.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/grep.c b/builtin/grep.c index 159e65d47..4de49df91 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>...]"), |