* [BUG?] --boundary inconsistent with path limiting
@ 2016-08-04 19:40 Jeff King
2016-08-04 20:09 ` Jeff King
2016-08-04 20:11 ` Junio C Hamano
0 siblings, 2 replies; 3+ messages in thread
From: Jeff King @ 2016-08-04 19:40 UTC (permalink / raw)
To: git
Let's say I have a simple repo with three paths:
git init -q repo
cd repo
for i in a b c
do
echo content >$i.t
git add $i.t
git commit -qm $i &&
git tag $i
done
If I ask for the top 2 commits, with the third as a boundary, I get the
expected output:
$ git log --format='%m %s' --boundary a..c
> c
> b
- a
If I limit the path to "b.t", I get:
$ git log --format='%m %s' --boundary a..c -- b.t
> b
- a
That makes sense to me. We omit "c" because it doesn't touch "b.t", and
obviously include "b", which does. We _do_ include the boundary commit,
even though it doesn't touch the path, which makes sense to me. It
remains a boundary whether it touched the path or not, and without it,
we get no boundary at all.
But now if I limit to "a.t", I get no output at all:
$ git log --format='%m %s' --boundary a..c -- a.t
whereas I would have expected "- a" to show the boundary.
Is this a bug, or are my expectations wrong?
-Peff
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [BUG?] --boundary inconsistent with path limiting
2016-08-04 19:40 [BUG?] --boundary inconsistent with path limiting Jeff King
@ 2016-08-04 20:09 ` Jeff King
2016-08-04 20:11 ` Junio C Hamano
1 sibling, 0 replies; 3+ messages in thread
From: Jeff King @ 2016-08-04 20:09 UTC (permalink / raw)
To: git
On Thu, Aug 04, 2016 at 03:40:43PM -0400, Jeff King wrote:
> That makes sense to me. We omit "c" because it doesn't touch "b.t", and
> obviously include "b", which does. We _do_ include the boundary commit,
> even though it doesn't touch the path, which makes sense to me. It
> remains a boundary whether it touched the path or not, and without it,
> we get no boundary at all.
>
> But now if I limit to "a.t", I get no output at all:
>
> $ git log --format='%m %s' --boundary a..c -- a.t
>
> whereas I would have expected "- a" to show the boundary.
>
> Is this a bug, or are my expectations wrong?
So I suppose it depends how you define "boundary" commits. In
get_revision_internal(), I see this comment:
/*
* boundary commits are the commits that are parents of the
* ones we got from get_revision_1() but they themselves are
* not returned from get_revision_1(). Before returning
* 'c', we need to mark its parents that they could be boundaries.
*/
By that definition, obviously if we do not have any commits to show,
then we have no boundary commits. I don't think this definition is
anywhere in the user-facing documentation, though.
It still seems weird to me, and I wonder if we should show all
UNINTERESTING commits as boundaries in the case that we haven't produced
any positive commits at all. But perhaps there is a case where that
would not be desirable.
-Peff
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [BUG?] --boundary inconsistent with path limiting
2016-08-04 19:40 [BUG?] --boundary inconsistent with path limiting Jeff King
2016-08-04 20:09 ` Jeff King
@ 2016-08-04 20:11 ` Junio C Hamano
1 sibling, 0 replies; 3+ messages in thread
From: Junio C Hamano @ 2016-08-04 20:11 UTC (permalink / raw)
To: Jeff King; +Cc: git
Jeff King <peff@peff.net> writes:
> But now if I limit to "a.t", I get no output at all:
>
> $ git log --format='%m %s' --boundary a..c -- a.t
>
> whereas I would have expected "- a" to show the boundary.
>
> Is this a bug, or are my expectations wrong?
In a range a..c, there is nothing that touches the path, so there is
no positive outcome. As boundaries are essentially the parents of
the "last" positive outcome, I would not be surprised if I see an
empty output in that scenario.
But to be honest, I do not think anybody cared between the
distinction between a bug and intended behaviour in this case.
The boundary started as a debugging aid for the traversal machinery
and not as a serious feature to support end-user workflow. In its
early days, I do not think we even showed _all_ boundaries (instead
we showed only ones that we have already parsed, or something like
that). I think we added code to do a bit more work when asked to
show boundaries to show boundary commits that the traditional
"primarily for debugging" logic wouldn't have shown later, losing
its value as a debugging aid (because it no longer showed precisely
where the traversal machinery stopped digging).
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-08-04 20:11 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-04 19:40 [BUG?] --boundary inconsistent with path limiting Jeff King
2016-08-04 20:09 ` Jeff King
2016-08-04 20:11 ` Junio C Hamano
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).