On Thu, Mar 19, 2015 at 4:27 AM, Dmitry Neverov <[email protected]> wrote: > Hi, > > I've noticed that the 'submodule.$name.url' config parameter from the > main repository is ignored when a submodule needs to be updated, the > submodule's 'remote.origin.url' is used instead. Is there any way to > customize the submodule url for both the initial clone and for > updates?
That's what "git submodule sync" is for. It will synchronize the url in .gitmodules with to the remote.origin.url for each submodule. I'm not sure about the second part of your question: are you talking about using different URLs for the initial clone and updates? -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html

