aboutsummaryrefslogtreecommitdiffstats
path: root/builtin-grep.c
AgeCommit message (Expand)AuthorFilesLines
2009-02-03Merge branch 'maint-1.6.0' into maintJunio C Hamano1-0/+2
2009-02-02grep: pass -I (ignore binary) down to external grepJunio C Hamano1-0/+2
2008-12-27grep: grep cache entries if they are "assume unchanged"Nguyễn Thái Ngọc Duy1-1/+6
2008-12-27grep: support --no-ext-grep to test builtin grepNguyễn Thái Ngọc Duy1-1/+7
2008-10-01git grep: Add "-z/--null" option as in GNU's grep.Raphael Zimmerer1-0/+8
2008-09-03Merge branch 'nd/worktree' into maintJunio C Hamano1-1/+4
2008-08-31'git foo' program identifies itself without dash in die() messagesJunio C Hamano1-1/+1
2008-08-28grep: fix worktree setupNguyễn Thái Ngọc Duy1-1/+4
2008-07-20Merge branch 'maint'Junio C Hamano1-1/+1
2008-07-20fix usage string for git grepJonathan Nieder1-1/+1
2008-07-16Merge branch 'sb/dashless'Junio C Hamano1-1/+1
2008-07-16Fix buffer overflow in git-grepDmitry Potapov1-12/+15
2008-07-13Make usage strings dash-lessStephan Beyer1-1/+1
2008-03-13add NO_EXTERNAL_GREP build optionJeff King1-2/+10
2008-02-20Teach git-grep --name-only as synonym for -lShawn O. Pearce1-0/+1
2008-01-21Make on-disk index representation separate from in-core oneLinus Torvalds1-2/+2
2008-01-04Don't access line[-1] for a zero-length "line" from fgets.Jim Meyering1-1/+1
2007-12-05git grep shows the same hit repeatedly for unmerged pathsJunio C Hamano1-6/+6
2007-11-17grep -An -Bm: fix invocation of external grep commandJunio C Hamano1-3/+3
2007-11-05grep with unmerged indexJunio C Hamano1-1/+1
2007-09-14Split grep arguments in a way that does not requires to add /dev/null.Junio C Hamano1-14/+76
2007-04-11sscanf/strtoul: parse integers robustlyJim Meyering1-14/+1
2007-03-21Initialize tree descriptors with a helper function rather than by hand.Linus Torvalds1-4/+7
2007-03-21Remove "pathlen" from "struct name_entry"Linus Torvalds1-1/+1
2007-03-14git-grep: don't use sscanfJim Meyering1-1/+14
2007-03-07Cast 64 bit off_t to 32 bit size_tShawn O. Pearce1-3/+6
2007-03-07Don't build external_grep if its not usedShawn O. Pearce1-0/+2
2007-02-27convert object type handling from a string to a numberNicolas Pitre1-4/+4
2007-02-20prefixcmp(): fix-up mechanical conversion.Junio C Hamano1-3/+3
2007-02-20Mechanical conversion to use prefixcmp()Junio C Hamano1-3/+3
2007-01-08short i/o: fix calls to read to use xread or read_in_fullAndy Whitcroft1-1/+1
2006-12-20simplify inclusion of system header files.Junio C Hamano1-3/+0
2006-11-26grep: do not skip unmerged entries when grepping in the working tree.Junio C Hamano1-4/+21
2006-09-27grep --all-matchJunio C Hamano1-0/+4
2006-09-27grep: free expressions and patterns when done.Junio C Hamano1-0/+2
2006-09-20builtin-grep: make pieces of it available as library.Junio C Hamano1-504/+18
2006-09-14Add "-h/-H" parsing to "git grep"Linus Torvalds1-4/+11
2006-09-02Replace uses of strdup with xstrdup.Shawn Pearce1-1/+1
2006-08-23builtin-grep.c: remove unused debugging piece.Junio C Hamano1-3/+0
2006-08-16builtin-grep: remove unused debugging cruft.Junio C Hamano1-57/+0
2006-08-14builtin-grep.c cleanupDavid Rientjes1-3/+1
2006-08-11git-grep: show pathnames relative to the current directoryJunio C Hamano1-10/+49
2006-08-06Fix "grep -w"Junio C Hamano1-10/+25
2006-07-29Call setup_git_directory() much earlierLinus Torvalds1-2/+1
2006-07-12Remove TYPE_* constant macros and use object_type enums consistently.Linus Torvalds1-2/+2
2006-07-10Fix more typos, primarily in the codePavel Roskin1-1/+1
2006-07-05git-grep: boolean expression on pattern matching.Junio C Hamano1-51/+327
2006-07-04git-grep: use a bit more specific error messages.Junio C Hamano1-4/+11
2006-07-04git-grep: fix exit code when we use external grep.Junio C Hamano1-5/+10
2006-07-04git-grep: fix parsing of pathspec separator '--'Junio C Hamano1-1/+5
2006-06-21Merge branch 'jc/upload-corrupt' into nextJunio C Hamano1-4/+5
2006-06-21Fix possible out-of-bounds array accessUwe Zeisberger1-4/+5
2006-06-19Add "named object array" conceptLinus Torvalds1-10/+6
2006-06-17Shrink "struct object" a bitLinus Torvalds1-4/+3
2006-06-06builtin-grep: pass ignore case option to external grepRobert Fitzsimons1-0/+2
2006-05-30tree_entry(): new tree-walking helper functionLinus Torvalds1-16/+10
2006-05-21remove superflous "const"Alex Riesen1-1/+1
2006-05-17builtin-grep: workaround for non GNU grep.Linus Torvalds1-3/+20
2006-05-15Fix silly typo in new builtin grepLinus Torvalds1-1/+1
2006-05-15builtin-grep: unparse more command line options.Junio C Hamano1-8/+57
2006-05-14builtin-grep: use external grep when we can take advantage of itLinus Torvalds1-0/+79
2006-05-09builtin-grep: -F (--fixed-strings)Junio C Hamano1-4/+32
2006-05-09builtin-grep: -w fixJunio C Hamano1-3/+3
2006-05-09builtin-grep: typofixJunio C Hamano1-1/+1
2006-05-08builtin-grep: tighten argument parsing.Junio C Hamano1-26/+50
2006-05-08Teach -f <file> option to builtin-grep.Junio C Hamano1-19/+42
2006-05-03builtin-grep: -L (--files-without-match).Junio C Hamano1-0/+20
2006-05-03builtin-grep: binary files -a and -IJunio C Hamano1-0/+44
2006-05-03builtin-grep: terminate correctly at EOFJunio C Hamano1-0/+2
2006-05-02builtin-grep: tighten path wildcard vs tree traversal.Junio C Hamano1-15/+20
2006-05-02builtin-grep: support -w (--word-regexp).Junio C Hamano1-0/+30
2006-05-02builtin-grep: support -c (--count).Junio C Hamano1-1/+20
2006-05-02builtin-grep: allow more than one patterns.Junio C Hamano1-21/+51
2006-05-02builtin-grep: allow -<n> and -[ABC]<n> notation for context lines.Junio C Hamano1-6/+22
2006-05-02builtin-grep: printf %.*s length is int, not ptrdiff_t.Junio C Hamano1-1/+1
2006-05-01builtin-grep: do not use setup_revisions()Junio C Hamano1-121/+134
2006-05-01builtin-grep: support '-l' option.Junio C Hamano1-0/+10
2006-05-01builtin-grep: wildcard pathspec fixesJunio C Hamano1-23/+62
2006-05-01built-in "git grep"Junio C Hamano1-0/+454