[RFC] submodule+shallow clone feature request

2 messages, 2 authors, 2016-06-15 · open the first message on its own page

[RFC] submodule+shallow clone feature request

From: Schuyler Duveen <hidden>
Date: 2016-06-15 22:48:13

My use case is deploying from a git repository, which would be even more
graceful with the following features:

1. When 'git clone' has both --recursive and --depth, then submodules
are also checked out shallow (for speed/bandwidth).

2. Some way to specify an override on .gitmodules sources.  This is
because our .gitmodules includes public, read-only sources (github),
rather than our local repos we would prefer to deploy from (for the
purpose of reliability).

The other use-case for feature #2 is the read-only vs. writable
repository sources.  Developers that are also working on the submodules
should be able to clone from separate repository sources.  Though this
could be (and perhaps is) satisfied with a pushurl= in .gitmodules, I'd
like to keep the push url non-public, and that still would leave us
unable to deploy from different urls.

For #2 maybe something like this:

$ git clone --recursive --depth 1 --modules foo.modules\
git@example.com/foo.git
where foo.modules contains:
<begin>
[submodule "bar"]
	path = bar
	url = git@example.com/bar.git
[submodule "bar/baz"]
	path = bar/baz
	url = git@example.com/baz.git
<end>

Notice how the .gitmodules needs to be able to specify recursive sources
as well.  Presumably `git submodule init` would take --modules argument
as well (and maybe git submodule update, too).

I'm not well-versed in the git source code yet, but poking around
suggests that this is doable.  Would a patch be well received (or does
someone want to do it for me :-)

cheers,
sky

Re: [RFC] submodule+shallow clone feature request

From: Avery Pennarun <hidden>
Date: 2016-06-15 22:48:13

On Wed, Feb 10, 2010 at 4:39 PM, Schuyler Duveen [off-list ref] wrote:
2. Some way to specify an override on .gitmodules sources.  This is
because our .gitmodules includes public, read-only sources (github),
rather than our local repos we would prefer to deploy from (for the
purpose of reliability).
You can already override this by editing .git/config after running
'git submodule init'.  Of course, doing so precludes using --recursive
in "git clone."
I'm not well-versed in the git source code yet, but poking around
suggests that this is doable.  Would a patch be well received (or does
someone want to do it for me :-)
The git-submodule stuff is rarely maintained.  I expect patches that
improve it will meet with generally positive response, but it's
somewhat unlikely that anyone will write them for you.

Have fun,

Avery
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help