git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jeff King <peff@peff.net>
To: Elazar Leibovich <elazarl@gmail.com>
Cc: Tim Mazid <timmazid@hotmail.com>, Git Mailing List <git@vger.kernel.org>
Subject: Re: Supporting "-v" option for git-log
Date: Wed, 25 May 2011 09:29:44 -0400	[thread overview]
Message-ID: <20110525132816.GA6709@sigill.intra.peff.net> (raw)
In-Reply-To: <BANLkTikT4s+Twfip2g7Zo-XcML1Wbd3qBg@mail.gmail.com>

On Wed, May 25, 2011 at 02:28:12PM +0300, Elazar Leibovich wrote:

> On Wed, May 25, 2011 at 2:21 PM, Tim Mazid <timmazid@hotmail.com> wrote:
> >
> > Well, personally, I've never used the --grep option. I pipe it through
> > grep, where I can supply options such as -v.
> 
> But then you must use single-line commits output. Which is
> inconvenient if you want to read all the commit message.

You can use perl to consider records larger than a single line, like:

  git log -z | perl -ln0e 'print unless /your pattern/'

But of course that is somewhat inconvenient to type, and is somewhat
slower than the internal grep.

> Now that I think of it, we already have the '--not' option for
> revision specifiers. Why won't we use it for grep patterns? That way
> -v will not be overloaded (it usually means verbose). For example
> 
>     git log --all --not --grep A --grep B

The problem is that "--not" already has a meaning, and the scope of that
meaning is different than what you propose. That is, in this command:

  git log a --not b c

The "--not" applies to both "b" and "c". So you are changing the meaning
of the existing:

  git log a --not --grep b c

(which now means "grep for b, but do not include commits in c"). And
even if we wanted to do that, there is a parsing ambiguity. Does the
"--not" apply _just_ to the grep, or does it also include "not c"?

Which is a shame, because we already have all of the code for "--and",
"--or", and "--not" in git-grep. It is just a syntactic conflict. I
think you could get away with "--grep-and", "--grep-or", and
"--grep-not". They are obviously less nice to type, but there would be
not conflict.

-Peff

  parent reply	other threads:[~2011-05-25 13:29 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-25  9:40 Supporting "-v" option for git-log Elazar Leibovich
2011-05-25 11:05 ` Tim Mazid
2011-05-25 11:14   ` Elazar Leibovich
2011-05-25 11:21     ` Tim Mazid
2011-05-25 11:24       ` Tim Mazid
2011-05-25 11:28       ` Elazar Leibovich
2011-05-25 11:35         ` Tim Mazid
2011-05-25 11:40           ` Elazar Leibovich
2011-05-25 13:29         ` Jeff King [this message]
2011-05-25 13:53           ` Jakub Narebski
2011-05-25 15:11             ` Jeff King
2011-05-25 16:38               ` Jakub Narebski
2011-05-25 17:32           ` Junio C Hamano
2011-05-25 20:01             ` Jeff King

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110525132816.GA6709@sigill.intra.peff.net \
    --to=peff@peff.net \
    --cc=elazarl@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=timmazid@hotmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).