From: Johannes Schindelin <Johannes.Schindelin@gmx.de>
To: Sam Vilain <sam@vilain.net>
Cc: git@vger.kernel.org, gitster@pobox.com
Subject: Re: [PATCH] Fix rev-list when showing objects involving submodules
Date: Mon, 12 Nov 2007 20:21:05 +0000 (GMT) [thread overview]
Message-ID: <Pine.LNX.4.64.0711122020270.4362@racer.site> (raw)
In-Reply-To: <4738AF60.90207@vilain.net>
Hi,
On Tue, 13 Nov 2007, Sam Vilain wrote:
> Johannes Schindelin wrote:
> > The function mark_tree_uninteresting() assumed that the tree entries
> > are blob when they are not trees. This is not so. Since we do
> > not traverse into submodules (yet), the gitlinks should be ignored.
> >
> > diff --git a/revision.c b/revision.c
> > index 931f978..81b5a93 100644
> > --- a/revision.c
> > +++ b/revision.c
> > @@ -69,7 +69,7 @@ void mark_tree_uninteresting(struct tree *tree)
> > while (tree_entry(&desc, &entry)) {
> > if (S_ISDIR(entry.mode))
> > mark_tree_uninteresting(lookup_tree(entry.sha1));
> > - else
> > + else if (!S_ISGITLINK(entry.mode))
> > mark_blob_uninteresting(lookup_blob(entry.sha1));
> > }
> >
> >
>
> Wouldn't it be better to check for what it is, rather than what it is not?
You mean something like
else if (S_ISREG(entry.mod) || S_ISLNK(entry.mod))
Hmm? Sure, I have no preference there.
Ciao,
Dscho
next prev parent reply other threads:[~2007-11-12 20:21 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-11-11 23:35 [PATCH] Fix rev-list when showing objects involving submodules Johannes Schindelin
2007-11-12 19:54 ` Sam Vilain
2007-11-12 20:21 ` Johannes Schindelin [this message]
2007-11-12 20:43 ` Linus Torvalds
2007-11-12 21:25 ` Johannes Schindelin
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=Pine.LNX.4.64.0711122020270.4362@racer.site \
--to=johannes.schindelin@gmx.de \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=sam@vilain.net \
/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;
as well as URLs for NNTP newsgroup(s).