aboutsummaryrefslogtreecommitdiffstats
path: root/grep.c
AgeCommit message (Expand)AuthorFilesLines
2014-03-18Merge branch 'rs/grep-h-c'Junio C Hamano1-2/+5
2014-03-11grep: support -h (no header) with --countRené Scharfe1-2/+5
2014-03-06Use hashcpy() when copying object namesSun He1-1/+1
2013-05-10grep: allow to use textconv filtersJeff King1-14/+86
2013-02-25fix clang -Wtautological-compare with unsigned enumAntoine Pelisse1-1/+2
2012-10-29Merge branch 'nd/grep-true-path'Jeff King1-3/+8
2012-10-12grep: stop looking at random places for .gitattributesNguyễn Thái Ngọc Duy1-3/+8
2012-10-09revisions: initialize revs->grep_filter using grep_init()Junio C Hamano1-0/+5
2012-10-09grep: move pattern-type bits support to top-level grep.[ch]Junio C Hamano1-0/+42
2012-10-09grep: move the configuration parsing logic to grep.[ch]Junio C Hamano1-0/+130
2012-09-29log --grep-reflog: reject the option without -gJunio C Hamano1-0/+2
2012-09-29revision: add --grep-reflog to filter commits by reflog messagesNguyễn Thái Ngọc Duy1-0/+1
2012-09-29grep: prepare for new header field filterNguyễn Thái Ngọc Duy1-1/+8
2012-09-20grep.c: make two symbols really file-scope static this timeJunio C Hamano1-2/+2
2012-09-15grep.c: mark private file-scope symbols as staticJunio C Hamano1-1/+5
2012-09-14log --grep/--author: honor --all-match honored for multiple --grep patternsJunio C Hamano1-0/+19
2012-09-14grep: teach --debug option to dump the parse treeJunio C Hamano1-2/+90
2012-06-01Merge branch 'rs/maint-grep-F' into maintJunio C Hamano1-17/+57
2012-05-20grep: support newline separated pattern listRené Scharfe1-1/+32
2012-05-20grep: factor out do_append_grep_pat()René Scharfe1-6/+9
2012-05-20grep: factor out create_grep_pat()René Scharfe1-11/+17
2012-05-11Merge branch 'ah/maint-grep-double-init' into maintJunio C Hamano1-1/+1
2012-05-07grep.c: remove redundant line of codeAngus Hammond1-1/+1
2012-03-07Merge branch 'jc/pickaxe-ignore-case'Junio C Hamano1-8/+3
2012-02-28grep: use static trans-case tableJunio C Hamano1-8/+3
2012-02-26Sync with 1.7.8.5Junio C Hamano1-1/+1
2012-02-26grep -P: Fix matching ^ and $Michał Kiedrowicz1-1/+1
2012-02-02grep: load file data after checking binary-nessJeff King1-3/+3
2012-02-02grep: respect diff attributes for binary-nessJeff King1-2/+14
2012-02-02grep: cache userdiff_driver in grep_sourceJeff King1-6/+16
2012-02-02grep: drop grep_buffer's "name" parameterJeff King1-2/+2
2012-02-02grep: refactor the concept of "grep source" into an objectJeff King1-34/+164
2012-02-02grep: move sha1-reading mutex into low-level codeJeff King1-0/+6
2012-02-02grep: make locking flag globalJeff King1-8/+10
2011-12-16grep: enable threading with -p and -W using lazy attribute lookupThomas Rast1-29/+44
2011-12-12grep: load funcname patterns for -WThomas Rast1-3/+4
2011-09-02Merge branch 'fk/use-kwset-pickaxe-grep-f'Junio C Hamano1-21/+45
2011-08-28Merge branch 'jk/color-and-pager'Junio C Hamano1-1/+1
2011-08-20Use kwset in grepFredrik Kuivinen1-21/+45
2011-08-19color: delay auto-color decision until point of useJeff King1-1/+1
2011-08-01grep: add option to show whole function as contextRené Scharfe1-10/+22
2011-06-05grep: add --headingRené Scharfe1-1/+5
2011-06-05grep: add --breakRené Scharfe1-2/+5
2011-06-05grep: fix coloring of hunk marks between filesRené Scharfe1-3/+12
2011-05-09git-grep: Learn PCREMichał Kiedrowicz1-1/+74
2011-05-09grep: Extract compile_regexp_failed() from compile_regexp()Michał Kiedrowicz1-9/+16
2011-05-09grep: Fix a typo in a commentMichał Kiedrowicz1-1/+1
2011-05-05grep: Put calls to fixmatch() and regmatch() into patmatch()Michał Kiedrowicz1-8/+15
2010-09-13log --author: take union of multiple "author" requestsJunio C Hamano1-12/+53
2010-09-12grep: move logic to compile header pattern into a separate helperJunio C Hamano1-23/+22
2010-05-24grep: support NUL chars in search strings for -FRené Scharfe1-13/+20
2010-05-24grep: use REG_STARTEND for all matching if availableRené Scharfe1-10/+14
2010-05-24grep: continue case insensitive fixed string search after NUL charsRené Scharfe1-3/+9
2010-05-24grep: use memmem() for fixed string searchRené Scharfe1-7/+9
2010-05-24grep: --name-only over binaryRené Scharfe1-4/+4
2010-05-24grep: --count over binaryRené Scharfe1-5/+4
2010-05-24grep: grep: refactor handling of binary mode optionsRené Scharfe1-9/+11
2010-04-03Merge branch 'rs/threaded-grep-context'Junio C Hamano1-12/+6
2010-03-20Merge branch 'ml/color-grep'Junio C Hamano1-26/+49
2010-03-15grep: enable threading for context line printingRené Scharfe1-12/+5
2010-03-08grep: Colorize selected, context, and function linesMark Lodato1-2/+9
2010-03-08grep: Colorize filename, line number, and separatorMark Lodato1-24/+40
2010-03-02Merge branch 'jc/grep-author-all-match-implicit'Junio C Hamano1-6/+40
2010-02-03grep: simplify assignment of ->fixedRené Scharfe1-4/+1
2010-01-28Merge branch 'fk/threaded-grep'Junio C Hamano1-18/+88
2010-01-26grep: use REG_STARTEND (if available) to speed up regexecBenjamin Kramer1-1/+8
2010-01-26Threaded grepFredrik Kuivinen1-18/+88
2010-01-25"log --author=me --grep=it" should find intersection, not unionJunio C Hamano1-6/+40
2010-01-13grep: rip out pessimization to use fixmatch()Junio C Hamano1-8/+1
2010-01-12Merge branch 'jc/maint-1.6.4-grep-lookahead' into jc/maint-grep-lookaheadJunio C Hamano1-0/+75
2010-01-12grep: optimize built-in grep by skipping lines that do not hitJunio C Hamano1-0/+75
2009-11-16grep: Allow case insensitive search of fixed-stringsBrian Collins1-3/+10
2009-07-02grep: simplify -p outputRené Scharfe1-8/+4
2009-07-01grep -p: support user defined regular expressionsRené Scharfe1-3/+26
2009-07-01grep: add option -p/--show-functionRené Scharfe1-8/+53
2009-07-01grep: handle pre context lines on demandRené Scharfe1-29/+32
2009-07-01grep: print context hunk marks between filesRené Scharfe1-1/+6
2009-07-01grep: move context hunk mark handling into show_line()René Scharfe1-15/+11
2009-06-03grep: fix empty word-regexp matchesRené Scharfe1-1/+5
2009-06-01grep: fix colouring of matches with zero lengthRené Scharfe1-0/+2
2009-05-23grep: fix word-regexp at the beginning of linesRené Scharfe1-0/+1
2009-05-20grep: fix word-regexp colouringRené Scharfe1-0/+5
2009-04-28Merge branch 'maint'Junio C Hamano1-2/+6
2009-04-28Merge branch 'maint-1.6.1' into maintJunio C Hamano1-2/+6
2009-04-28Merge branch 'maint-1.6.0' into maint-1.6.1Junio C Hamano1-2/+6
2009-04-27grep: fix segfault when "git grep '('" is givenLinus Torvalds1-2/+6
2009-03-18git log: avoid segfault with --all-matchMichele Ballabio1-1/+2
2009-03-08grep: cast printf %.*s "precision" argument explicitly to intJunio C Hamano1-2/+2
2009-03-07grep: color patterns in outputRené Scharfe1-12/+78
2009-03-07grep: add pmatch and eflags arguments to match_one_pattern()René Scharfe1-11/+10
2009-03-07grep: remove grep_opt argument from match_expr_eval()René Scharfe1-17/+17
2009-03-07grep: micro-optimize hit collection for AND nodesRené Scharfe1-7/+3
2009-01-17Add is_regex_special()René Scharfe1-8/+1
2009-01-17Change NUL char handling of isspecial()René Scharfe1-2/+3
2009-01-09grep: don't call regexec() for fixed stringsRené Scharfe1-4/+25
2009-01-09grep -w: forward to next possible position after rejected matchRené Scharfe1-4/+7
2009-01-05remove trailing LF in die() messagesAlexander Potashev1-1/+1
2008-11-11Merge branch 'maint'Junio C Hamano1-3/+3
2008-11-11Fix non-literal format in printf-style callsDaniel Lowe1-3/+3
2008-10-01git grep: Add "-z/--null" option as in GNU's grep.Raphael Zimmerer1-3/+11
2008-09-04log --author/--committer: really match only with name partJunio C Hamano1-0/+52
2007-06-04Move buffer_is_binary() to xdiff-interface.hJohannes Schindelin1-11/+1
2006-12-20simplify inclusion of system header files.Junio C Hamano1-1/+0
2006-09-27grep --all-matchJunio C Hamano1-18/+96
2006-09-27grep: fix --fixed-strings combined with expression.Junio C Hamano1-5/+2
2006-09-27grep: free expressions and patterns when done.Junio C Hamano1-0/+42
2006-09-20Update grep internal for grepping only in head/bodyJunio C Hamano1-16/+35
2006-09-20builtin-grep: make pieces of it available as library.Junio C Hamano1-0/+440