From: Philippe Blain <levraiphilippeblain@gmail.com>
To: Pieter-Jan Busschaert <pieterjan.busschaert@gmail.com>,
git@vger.kernel.org
Cc: Glen Choo <chooglen@google.com>
Subject: Re: Question related to submodule and different recurse config options
Date: Sun, 18 Sep 2022 10:36:43 -0400 [thread overview]
Message-ID: <36621ba8-ad8e-8758-3e17-ea7a83432b4c@gmail.com> (raw)
In-Reply-To: <CABxXVRS-9unw-8_N8w2bdj4E5Ch780tMetJyD+++ixdWsBv90A@mail.gmail.com>
Hi Pieter-Jan,
Le 2022-09-08 à 11:01, Pieter-Jan Busschaert a écrit :
> Hello,
>
> I'm trying to set my git config like this (fetch.recurseSubmodules =
> on-demand) and (submodule.recurse = true). The goal is to do fetch &
> submodule update if-and-only-if the pointed-to commit changes.
>
That makes sense.
> However, it seems with this config a git pull will act as if
> fetch.recurseSubmodules was set to true (instead of on-demand) and do
> a fetch on all of the submodules. For me this does not correspond to
> the documentation (which says the value of submodule.recurse will only
> be used if fetch.recurseSubmodules is NOT set). I would have thought
> that this recent commit:
> https://github.com/git/git/commit/ed54e1b31ad1a9a35ef6c23024d325a2c4d85221
> describes this scenario and fixed it, but I still have that behaviour
> (git 2.37.3). Maybe that patch only covered true/false settings for
> fetch.recurseSubmodules and doesn't properly handle the on-demand
> setting?
>
> Is what I see the intended behaviour?
> Is it possible in any way to configure git to only fetch & update
> submodules if the pointed-to commit changes?
I'm not sure if that's the bug you are hitting, but I remember noticing that
the actual order of the two configs in the config file mattered (whereas it should
not). With this:
fetch.recurseSubmodules = on-demand
submodule.recurse = true
the "submodule.recurse = true" is read last and then the "on-demand" setting for fetch
is effectively ignored.
With this order:
submodule.recurse = true
fetch.recurseSubmodules = on-demand
I think it would work correctly. But I might be misremembering (I did not try it).
Cheers,
Philippe.
next prev parent reply other threads:[~2022-09-18 14:36 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-08 15:01 Question related to submodule and different recurse config options Pieter-Jan Busschaert
2022-09-18 14:36 ` Philippe Blain [this message]
2022-09-19 18:43 ` Glen Choo
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=36621ba8-ad8e-8758-3e17-ea7a83432b4c@gmail.com \
--to=levraiphilippeblain@gmail.com \
--cc=chooglen@google.com \
--cc=git@vger.kernel.org \
--cc=pieterjan.busschaert@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 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).