git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* git rev-list --boundary from..to
@ 2007-04-23 13:34 Santi Béjar
  2007-04-23 14:25 ` Johannes Schindelin
  0 siblings, 1 reply; 4+ messages in thread
From: Santi Béjar @ 2007-04-23 13:34 UTC (permalink / raw)
  To: Git Mailing List

Hi *,

  git rev-list ${order} --boundary ${commitlimit}

  is what is used in gitk. In v1.5.0.3:

  $ gitk from..to

shows the boundary commits next to the child, but it is no longer the
case since v1.5.0.3-290-g86ab490.

  Now all the boundary commits are at the bottom.

  While at it, when used with --max-count they are at the bottom too,
and I understand why, but is there a way to tell "show me the boundary
commits next to the child even if it means it takes more time"?

  Thank you in advance

  Santi

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

* Re: git rev-list --boundary from..to
  2007-04-23 13:34 git rev-list --boundary from..to Santi Béjar
@ 2007-04-23 14:25 ` Johannes Schindelin
  2007-04-23 14:38   ` Santi Béjar
  0 siblings, 1 reply; 4+ messages in thread
From: Johannes Schindelin @ 2007-04-23 14:25 UTC (permalink / raw)
  To: Santi Béjar; +Cc: Git Mailing List

[-- Attachment #1: Type: TEXT/PLAIN, Size: 692 bytes --]

Hi,

On Mon, 23 Apr 2007, Santi Béjar wrote:

>  git rev-list ${order} --boundary ${commitlimit}
> 
>  is what is used in gitk. In v1.5.0.3:
> 
>  $ gitk from..to
> 
> shows the boundary commits next to the child, but it is no longer the
> case since v1.5.0.3-290-g86ab490.
>
>  Now all the boundary commits are at the bottom.
> 
>  While at it, when used with --max-count they are at the bottom too,
> and I understand why, but is there a way to tell "show me the boundary
> commits next to the child even if it means it takes more time"?

I'd say "--parents", and infer the relevant information. While I agree 
that it was nicer to scripts earlier, IMHO it was incorrect, too.

Hth,
Dscho

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

* Re: git rev-list --boundary from..to
  2007-04-23 14:25 ` Johannes Schindelin
@ 2007-04-23 14:38   ` Santi Béjar
  2007-04-23 14:53     ` Johannes Schindelin
  0 siblings, 1 reply; 4+ messages in thread
From: Santi Béjar @ 2007-04-23 14:38 UTC (permalink / raw)
  To: Johannes Schindelin; +Cc: Git Mailing List

On 4/23/07, Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote:
> Hi,
>
> On Mon, 23 Apr 2007, Santi Béjar wrote:
>
> >  git rev-list ${order} --boundary ${commitlimit}
> >
> >  is what is used in gitk. In v1.5.0.3:
> >
> >  $ gitk from..to
> >
> > shows the boundary commits next to the child, but it is no longer the
> > case since v1.5.0.3-290-g86ab490.
> >
> >  Now all the boundary commits are at the bottom.
> >
> >  While at it, when used with --max-count they are at the bottom too,
> > and I understand why, but is there a way to tell "show me the boundary
> > commits next to the child even if it means it takes more time"?
>
> I'd say "--parents", and infer the relevant information.

Sorry, I think I did not expressed it quite well. The "next to the
child" was about the order git-rev-list outputs the commits, not about
the parent information (moreover gitk uses --parents).


> While I agree
> that it was nicer to scripts earlier, IMHO it was incorrect, too.

Sorry but I do not understand what is incorrect. Are you talking about
the regression or about the --max-count question?

Santi

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

* Re: git rev-list --boundary from..to
  2007-04-23 14:38   ` Santi Béjar
@ 2007-04-23 14:53     ` Johannes Schindelin
  0 siblings, 0 replies; 4+ messages in thread
From: Johannes Schindelin @ 2007-04-23 14:53 UTC (permalink / raw)
  To: Santi Béjar; +Cc: Git Mailing List

[-- Attachment #1: Type: TEXT/PLAIN, Size: 1749 bytes --]

Hi,

On Mon, 23 Apr 2007, Santi Béjar wrote:

> On 4/23/07, Johannes Schindelin <Johannes.Schindelin@gmx.de> wrote:
> >
> > On Mon, 23 Apr 2007, Santi Béjar wrote:
> >
> > >  git rev-list ${order} --boundary ${commitlimit}
> > >
> > >  is what is used in gitk. In v1.5.0.3:
> > >
> > >  $ gitk from..to
> > >
> > > shows the boundary commits next to the child, but it is no longer the
> > > case since v1.5.0.3-290-g86ab490.
> > >
> > >  Now all the boundary commits are at the bottom.
> > >
> > > While at it, when used with --max-count they are at the bottom too,
> > > and I understand why, but is there a way to tell "show me the boundary
> > > commits next to the child even if it means it takes more time"?
> >
> > I'd say "--parents", and infer the relevant information.
> 
> Sorry, I think I did not expressed it quite well. The "next to the 
> child" was about the order git-rev-list outputs the commits, not about 
> the parent information (moreover gitk uses --parents).

I meant that you can use "--parents" to reorder the revs, so that the 
boundary commits come directly after their children.

> > While I agree that it was nicer to scripts earlier, IMHO it was 
> > incorrect, too.
> 
> Sorry but I do not understand what is incorrect. Are you talking about 
> the regression or about the --max-count question?

AFAICT the calculation of what makes a boundary commit was wrong before, 
and as a consequence of the fixed method, you see the boundary commits at 
the end.

To "fix" the order back to what you are used to, rev-list would have to do 
a specialized topological sort on top of what it does right now. Since not 
all users of rev-list--boundary need that, it should not be changed IMHO, 
at least by default.

Ciao,
Dscho

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

end of thread, other threads:[~2007-04-23 14:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-04-23 13:34 git rev-list --boundary from..to Santi Béjar
2007-04-23 14:25 ` Johannes Schindelin
2007-04-23 14:38   ` Santi Béjar
2007-04-23 14:53     ` Johannes Schindelin

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).