git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/7] grep: better support for binary files
@ 2010-05-13 20:33 René Scharfe
  2010-05-13 20:34 ` [PATCH 1/7] grep: add test script for binary file handling René Scharfe
                   ` (6 more replies)
  0 siblings, 7 replies; 10+ messages in thread
From: René Scharfe @ 2010-05-13 20:33 UTC (permalink / raw)
  To: Git Mailing List; +Cc: Phil Lawrence, Junio C Hamano

This series improves support of git grep for binary files.  It tries to
pick the low hanging fruits; at the end you can search _in_ files that
contain NUL characters, but you can't search _for_ NULs, yet.

[PATCH 1/7] grep: add test script for binary file handling

	This patch adds a simple test script documenting what git grep
	can do with binary files.

[PATCH 2/7] grep: refactor handling of binary mode options
[PATCH 3/7] grep: --count over binary

	These two makes git grep handle counting in binary files like
	GNU grep does.

[PATCH 4/7] grep: use memmem() for fixed string search
[PATCH 5/7] grep: continue case insensitive fixed string search after NUL chars

	These two patches make git grep -F work on binary files.

[PATCH 6/7] grep: add regmatch(), a wrapper for REG_STARTEND handling
[PATCH 7/7] grep: use regmatch() for line matching

	The final patches make git grep work on binary files if the
	platform's regexec() supports the flag REG_STARTEND.  Our own
	version in compat/ doesn't, unfortunately.


 grep.c                 |   70 ++++++++++++++++++++++++++++-------------------
 t/t7008-grep-binary.sh |   54 +++++++++++++++++++++++++++++++++++++
 2 files changed, 96 insertions(+), 28 deletions(-)

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2010-05-16 17:45 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-13 20:33 [PATCH 0/7] grep: better support for binary files René Scharfe
2010-05-13 20:34 ` [PATCH 1/7] grep: add test script for binary file handling René Scharfe
2010-05-13 20:36 ` [PATCH 2/7] grep: refactor handling of binary mode options René Scharfe
2010-05-13 20:37 ` [PATCH 3/7] grep: --count over binary René Scharfe
2010-05-14  9:34   ` Dmitry Potapov
2010-05-16 17:45     ` René Scharfe
2010-05-13 20:38 ` [PATCH 4/7] grep: use memmem() for fixed string search René Scharfe
2010-05-13 20:39 ` [PATCH 5/7] grep: continue case insensitive fixed string search after NUL chars René Scharfe
2010-05-13 20:40 ` [PATCH 6/7] grep: add regmatch(), a wrapper for REG_STARTEND handling René Scharfe
2010-05-13 20:41 ` [PATCH 7/7] grep: use regmatch() for line matching René Scharfe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).