From: "Keller, Jacob E" <jacob.e.keller@intel.com>
To: "gitster@pobox.com" <gitster@pobox.com>
Cc: "git@vger.kernel.org" <git@vger.kernel.org>,
"j6t@kdbg.org" <j6t@kdbg.org>, "peff@peff.net" <peff@peff.net>,
"stefanbeller@gmail.com" <stefanbeller@gmail.com>,
"jacob.keller@gmail.com" <jacob.keller@gmail.com>
Subject: Re: [PATCH v11 5/8] allow do_submodule_path to work even if submodule isn't checked out
Date: Fri, 26 Aug 2016 18:28:29 +0000 [thread overview]
Message-ID: <1472236108.28343.5.camel@intel.com> (raw)
In-Reply-To: <xmqqshtrgzpi.fsf@gitster.mtv.corp.google.com>
On Fri, 2016-08-26 at 11:19 -0700, Junio C Hamano wrote:
> Jacob Keller <jacob.e.keller@intel.com> writes:
>
> >
> > Currently, do_submodule_path will attempt locating the .git
> > directory by
> > using read_gitfile on <path>/.git. If this fails it just assumes
> > the
> > <path>/.git is actually a git directory.
> >
> > This is good because it allows for handling submodules which were
> > cloned
> > in a regular manner first before being added to the parent project.
>
> s/parent project/superproject/;
>
Yep.
> >
> > Unfortunately this fails if the <path> is not actually checked out
> > any
> > longer, such as by removing the directory.
> >
> > Fix this by checking if the directory we found is actually a
> > gitdir. In
> > the case it is not, attempt to lookup the submodule configuration
> > and
> > find the name of where it is stored in the .git/modules/ folder of
> > the
> > parent project.
>
> As you consistently say "directory" in the earlier part of the log
> message,
>
> s/folder of the parent project/directory of the superproject/;
>
> is desired.
>
Yep.
> >
> >
> > If we can't locate the submodule configuration this might occur
> > because
>
> I added s/configuration/&,/ to make it a bit easier to read.
>
Makes sense.
> >
> > for example a submodule gitlink was added but the corresponding
> > .gitmodules file was not properly updated. A die() here would not
> > be
> > pleasant to the users of submodule diff formats, so instead, modify
> > do_submodule_path to return an error code. For
> > git_pathdup_submodule,
> > just return NULL when we fail to find a path. For
> > strbuf_git_path_submodule
> > propagate the error code to the caller.
>
> Somehow I had to read the latter half of this paragraph twice,
> before I realized that the last two sentence talks about how these
> two functions exactly do "to return an error code". Tentatively
> what I queued has:
>
> ... so instead, modify do_submodule_path() to return an error
> code:
>
> - git_pathdup_submodule() returns NULL when we fail to find a
> path.
> - strbuf_git_path_submodule() propagates the error code to the
> caller.
>
> instead, hoping that would be easier to understand.
>
That's much better and more clear. Thanks!
> >
> > -static void do_submodule_path(struct strbuf *buf, const char
> > *path,
> > - const char *fmt, va_list args)
> > +/* Returns 0 on success, non-zero on failure. */
>
> s/non-zero/negative/;
>
True.
> >
> > +#define SUBMODULE_PATH_ERR_NOT_CONFIGURED -1
> > +static int do_submodule_path(struct strbuf *buf, const char *path,
> > + const char *fmt, va_list args)
> > {
>
> This 5/8 is the only changed one in the entire series from the
> previous round, I think. I'll replace what was in 'pu' and wait for
> responses.
>
> Thanks.
Yep, that's correct.
Regards,
Jake
next prev parent reply other threads:[~2016-08-26 18:28 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-25 23:32 [PATCH v11 0/8] submodule inline diff format Jacob Keller
2016-08-25 23:32 ` [PATCH v11 1/8] cache: add empty_tree_oid object and helper function Jacob Keller
2016-08-25 23:32 ` [PATCH v11 2/8] diff.c: remove output_prefix_length field Jacob Keller
2016-08-25 23:32 ` [PATCH v11 3/8] graph: add support for --line-prefix on all graph-aware output Jacob Keller
2016-08-25 23:32 ` [PATCH v11 4/8] diff: prepare for additional submodule formats Jacob Keller
2016-08-25 23:32 ` [PATCH v11 5/8] allow do_submodule_path to work even if submodule isn't checked out Jacob Keller
2016-08-26 18:19 ` Junio C Hamano
2016-08-26 18:28 ` Keller, Jacob E [this message]
2016-08-25 23:32 ` [PATCH v11 6/8] submodule: convert show_submodule_summary to use struct object_id * Jacob Keller
2016-08-25 23:32 ` [PATCH v11 7/8] submodule: refactor show_submodule_summary with helper function Jacob Keller
2016-08-25 23:32 ` [PATCH v11 8/8] diff: teach diff to display submodule difference with an inline diff Jacob Keller
2016-08-26 19:17 ` [PATCH v11 0/8] submodule inline diff format Stefan Beller
2016-08-26 19:58 ` Keller, Jacob E
2016-08-26 20:04 ` Jeff King
2016-08-26 23:05 ` Jacob Keller
2016-08-26 23:13 ` Jacob Keller
2016-08-31 16:45 ` Junio C Hamano
2016-08-31 22:43 ` Jacob Keller
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=1472236108.28343.5.camel@intel.com \
--to=jacob.e.keller@intel.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=j6t@kdbg.org \
--cc=jacob.keller@gmail.com \
--cc=peff@peff.net \
--cc=stefanbeller@gmail.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.