From: David Kastrup <dak@gnu.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: git@vger.kernel.org
Subject: Re: A question about git-rev-list
Date: Mon, 16 Jul 2007 23:16:00 +0200 [thread overview]
Message-ID: <85bqecm4mn.fsf@lola.goethe.zz> (raw)
In-Reply-To: <alpine.LFD.0.999.0707161258560.20061@woody.linux-foundation.org> (Linus Torvalds's message of "Mon\, 16 Jul 2007 13\:05\:34 -0700 \(PDT\)")
Linus Torvalds <torvalds@linux-foundation.org> writes:
> On Mon, 16 Jul 2007, David Kastrup wrote:
>>
>> if I do
>>
>> git-rev-list --remove-empty HEAD --not some-commit -- filename | tail -1
>>
>> do I have any guarantee that the commit id I get (if any) is a direct
>> descendant of some-commit?
>
> No. You get the guarantee that
>
> - it's some kind of parent of HEAD
> - it's *not* a parent of some-commit
>
> But the trivial case is a simple history like
>
> /-B-\
> A D
> \-C-/
>
> (where "A" is the root commit, and "D" is the current HEAD, and there are
> two development lines from A to D).
>
> If you now do
>
> git-rev-list HEAD --not C
>
> you would generally see B on the list of commits, even though it's
> obviously not a direct descendant of C.
Ok, thanks. As explained in a different posting, I try to tackle this
now with the equivalent of
git-rev-list HEAD --parents --not B -- somefile.c | awk '/ B/{print $1}'
This will give me one descendant if there is one. The problem I have
with that is that "somefile.c" renders commits uninteresting, but
not if they have interesting parents (what do their parents have to do
with it?). So if I have
A -> B -> B1 -> C -> HEAD
where somefile.c does not change between B and B1, then
git-rev-list HEAD --not B -- somefile.c
spews out
HEAD
C
and that's it. Quite as expected. However,
git-rev-list HEAD --not B --parents -- somefile.c
spews out
HEAD C
C B1
B1 B
and look and behold, B1 became interesting because of its unlisted
parent B.
There is something wrong with that.
--
David Kastrup, Kriemhildstr. 15, 44793 Bochum
next prev parent reply other threads:[~2007-07-16 21:16 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-07-16 8:55 A question about git-rev-list David Kastrup
2007-07-16 20:05 ` Linus Torvalds
2007-07-16 21:16 ` David Kastrup [this message]
2007-07-17 4:33 ` Junio C Hamano
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=85bqecm4mn.fsf@lola.goethe.zz \
--to=dak@gnu.org \
--cc=git@vger.kernel.org \
--cc=torvalds@linux-foundation.org \
/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