Git development
 help / color / mirror / Atom feed
* [WISH] prepend diffstat in front of the patch
@ 2006-04-15  9:07 Marco Costalba
  2006-04-15  9:16 ` Junio C Hamano
  2006-04-15 11:48 ` Johannes Schindelin
  0 siblings, 2 replies; 7+ messages in thread
From: Marco Costalba @ 2006-04-15  9:07 UTC (permalink / raw)
  To: Johannes.Schindelin; +Cc: junkio, git

>From today git tree

$ git-diff-tree -r -c -p --stat 84981f9
84981f9ad963f050abf4fe33ac07d36b4ea90c6d
---
 diff.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


$ git-diff-tree -r -c --stat -p 84981f9
84981f9ad963f050abf4fe33ac07d36b4ea90c6d
diff --git a/diff.c b/diff.c
index c120239..f1b672d 100644
--- a/diff.c
+++ b/diff.c
@@ -438,8 +438,8 @@ static void builtin_diffstat(const char
                xdemitcb_t ecb;

                xpp.flags = XDF_NEED_MINIMAL;
-               xecfg.ctxlen = 3;
-               xecfg.flags = XDL_EMIT_FUNCNAMES;
+               xecfg.ctxlen = 0;
+               xecfg.flags = 0;
                ecb.outf = xdiff_outf;
                ecb.priv = diffstat;
                xdl_diff(&mf1, &mf2, &xpp, &xecfg, &ecb);


Perhaps I missed something, but I would like to see --stat and -p as 
_cumulative_ options .

Would be great if git-diff-tree -r -c --stat -p 84981f9 prepends
diffstat in front of the patch as Junio suggested some days ago.

Is it already planned?

Thanks
Marco

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

* Re: [WISH] prepend diffstat in front of the patch
  2006-04-15  9:07 [WISH] prepend diffstat in front of the patch Marco Costalba
@ 2006-04-15  9:16 ` Junio C Hamano
  2006-04-15  9:23   ` Marco Costalba
  2006-04-15 11:51   ` Johannes Schindelin
  2006-04-15 11:48 ` Johannes Schindelin
  1 sibling, 2 replies; 7+ messages in thread
From: Junio C Hamano @ 2006-04-15  9:16 UTC (permalink / raw)
  To: Marco Costalba; +Cc: git

"Marco Costalba" <mcostalba@gmail.com> writes:

> Perhaps I missed something, but I would like to see --stat and -p as 
> _cumulative_ options .

Yes, you missed my write-up on "Recent unresolved issues",
especially this entry:

    * Message-ID: <7vek02ynif.fsf@assigned-by-dhcp.cox.net>
      diff --with-raw, --with-stat? (me)

and the thread that introduced the --stat option.

It is also what I want, but there is only 24 hours in a day and
there is this thing called day-job.

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

* Re: [WISH] prepend diffstat in front of the patch
  2006-04-15  9:16 ` Junio C Hamano
@ 2006-04-15  9:23   ` Marco Costalba
  2006-04-15 11:51   ` Johannes Schindelin
  1 sibling, 0 replies; 7+ messages in thread
From: Marco Costalba @ 2006-04-15  9:23 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

On 4/15/06, Junio C Hamano <junkio@cox.net> wrote:
> "Marco Costalba" <mcostalba@gmail.com> writes:
>
> > Perhaps I missed something, but I would like to see --stat and -p as
> > _cumulative_ options .
>
> Yes, you missed my write-up on "Recent unresolved issues",
> especially this entry:
>
>     * Message-ID: <7vek02ynif.fsf@assigned-by-dhcp.cox.net>
>       diff --with-raw, --with-stat? (me)
>
> and the thread that introduced the --stat option.
>
> It is also what I want, but there is only 24 hours in a day and
> there is this thing called day-job.
>

Sorry, I  didn't mean to force anything, just asking.

Day-job thing is not unknown to me too.

Marco

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

* Re: [WISH] prepend diffstat in front of the patch
  2006-04-15  9:07 [WISH] prepend diffstat in front of the patch Marco Costalba
  2006-04-15  9:16 ` Junio C Hamano
@ 2006-04-15 11:48 ` Johannes Schindelin
  2006-04-15 12:12   ` Junio C Hamano
  1 sibling, 1 reply; 7+ messages in thread
From: Johannes Schindelin @ 2006-04-15 11:48 UTC (permalink / raw)
  To: Marco Costalba; +Cc: git

Hi,

On Sat, 15 Apr 2006, Marco Costalba wrote:

> Perhaps I missed something, but I would like to see --stat and -p as 
> _cumulative_ options .
> 
> Would be great if git-diff-tree -r -c --stat -p 84981f9 prepends
> diffstat in front of the patch as Junio suggested some days ago.
> 
> Is it already planned?

We are a little impatient, aren't we?

Anyway, as you probably saw already, I sent out a patch which does that. I 
wanted to wait a little to introduce it, because I had the feeling that 
the option parsing would be volatile for a few days.

Ciao,
Dscho

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

* Re: [WISH] prepend diffstat in front of the patch
  2006-04-15  9:16 ` Junio C Hamano
  2006-04-15  9:23   ` Marco Costalba
@ 2006-04-15 11:51   ` Johannes Schindelin
  1 sibling, 0 replies; 7+ messages in thread
From: Johannes Schindelin @ 2006-04-15 11:51 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

Hi,

On Sat, 15 Apr 2006, Junio C Hamano wrote:

> [... speaking about --patch-with-stat ...]
> 
> It is also what I want, but there is only 24 hours in a day and
> there is this thing called day-job.

I want to add that there is a real life also, and that in a few parts of 
this lovely world, there is Easter right now.

And most importantly: an itch like that is a great opportunity for 
non-veterans to get involved with git.

Ciao,
Dscho

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

* Re: [WISH] prepend diffstat in front of the patch
  2006-04-15 11:48 ` Johannes Schindelin
@ 2006-04-15 12:12   ` Junio C Hamano
  2006-04-15 12:30     ` Johannes Schindelin
  0 siblings, 1 reply; 7+ messages in thread
From: Junio C Hamano @ 2006-04-15 12:12 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: git

Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:

> Anyway, as you probably saw already, I sent out a patch which does that. I 
> wanted to wait a little to introduce it, because I had the feeling that 
> the option parsing would be volatile for a few days.

Thanks for the consideration, but that's what topic branches are
for ;-).

Seriously, even the unified one (either Linus's or mine) handed
diff option parsing to an established function that is identical
to the "master" version, so the --patch-with-stat is probably a
no-impact merge.

		JC "What's Easter" Hamano ;-)

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

* Re: [WISH] prepend diffstat in front of the patch
  2006-04-15 12:12   ` Junio C Hamano
@ 2006-04-15 12:30     ` Johannes Schindelin
  0 siblings, 0 replies; 7+ messages in thread
From: Johannes Schindelin @ 2006-04-15 12:30 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git

Hi,

On Sat, 15 Apr 2006, Junio C Hamano wrote:

> 		JC "What's Easter" Hamano ;-)

Just for the record: According to Douglas Adams, nearly two thousand years 
ago, one man has been nailed to a tree for saying how great it would be to 
be nice to people for a change. That's what Christians try to remember on 
Easter.

Ciao,
Dscho

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

end of thread, other threads:[~2006-04-15 12:30 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-15  9:07 [WISH] prepend diffstat in front of the patch Marco Costalba
2006-04-15  9:16 ` Junio C Hamano
2006-04-15  9:23   ` Marco Costalba
2006-04-15 11:51   ` Johannes Schindelin
2006-04-15 11:48 ` Johannes Schindelin
2006-04-15 12:12   ` Junio C Hamano
2006-04-15 12:30     ` Johannes Schindelin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox