From: Junio C Hamano <gitster@pobox.com>
To: David Kastrup <dak@gnu.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>, git@vger.kernel.org
Subject: Re: A question about git-rev-list
Date: Mon, 16 Jul 2007 21:33:49 -0700 [thread overview]
Message-ID: <7v8x9fbqdu.fsf@assigned-by-dhcp.cox.net> (raw)
In-Reply-To: <85bqecm4mn.fsf@lola.goethe.zz> (David Kastrup's message of "Mon, 16 Jul 2007 23:16:00 +0200")
David Kastrup <dak@gnu.org> writes:
> ... 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.
There indeed is, and that is not what I am seeing.
Running this script in an empty directory gives me:
#!/bin/sh
GIT_AUTHOR_NAME='A U Thor'
GIT_AUTHOR_EMAIL=a.u.thor@example.xz
GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"
GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL"
GIT_AUTHOR_DATE='2007-07-16 00:00:00 +0000'
GIT_COMMITTER_DATE='2007-07-16 00:00:00 +0000'
export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL \
GIT_AUTHOR_DATE GIT_COMMITTER_DATE
rm -fr .git
git init
echo A >somefile.c; git add somefile.c; git commit -m 'A'; git tag A
echo B >somefile.c; git add somefile.c; git commit -m 'B'; git tag B
echo B1 >another; git add another; git commit -m 'B1'; git tag B1
echo C >somefile.c; git add somefile.c; git commit -m 'C'; git tag C
echo H >somefile.c; git add somefile.c; git commit -m 'H'; git tag H
git rev-list --parents HEAD --not B -- somefile.c |
git name-rev --tags --stdin
$ sh t000.sh
Initialized empty Git repository in .git/
Created initial commit 7a13cf5: A
1 files changed, 1 insertions(+), 0 deletions(-)
create mode 100644 somefile.c
Created commit b66d40b: B
1 files changed, 1 insertions(+), 1 deletions(-)
Created commit 5530c91: B1
1 files changed, 1 insertions(+), 0 deletions(-)
create mode 100644 another
Created commit 7ee2b7e: C
1 files changed, 1 insertions(+), 1 deletions(-)
Created commit 71fafc0: H
1 files changed, 1 insertions(+), 1 deletions(-)
71fafc0f49ffb82b123c09ec0857f9f458ed32c4 (tags/H) 7ee2b7ed072190c56a2eedda3130f6bb729d0da1 (tags/C)
7ee2b7ed072190c56a2eedda3130f6bb729d0da1 (tags/C) b66d40bd7ed6d7403c16d8e37e6e410852598247 (tags/B)
The commit listed are H and then C; their (rewritten) parents
are C and B, respectively.
prev parent reply other threads:[~2007-07-17 4:33 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
2007-07-17 4:33 ` Junio C Hamano [this message]
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=7v8x9fbqdu.fsf@assigned-by-dhcp.cox.net \
--to=gitster@pobox.com \
--cc=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