Johannes Schindelin <Johannes.Schindelin@xxxxxx> writes: > [TIC PATCH] revision.c: accept "-i" to make --grep case insensitive > > When calling > > git log --grep=blabla -i --grep=blublu > > the expression "blabla" is greppend case _sensitively_, but "blublu" > case _insensitively_. > > Signed-off-by: Johannes Schindelin <Johannes.Schindelin@xxxxxx> > > --- > > revision.c | 9 +++++++++ > 1 files changed, 9 insertions(+), 0 deletions(-) > > diff --git a/revision.c b/revision.c > index 42ba310..843aa8e 100644 > --- a/revision.c > +++ b/revision.c > @@ -9,6 +9,8 @@ > #include "grep.h" > #include "reflog-walk.h" > > +static int case_insensitive_grep = 0; > + > static char *path_name(struct name_path *path, const char *name) > { > struct name_path *p; This is very tempting but, ... hmmmm... - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html