[This thread is starting to get long, sorry for even more noise about the submodule stuff] On 5/25/07, Junio C Hamano <junkio@xxxxxxx> wrote:
"Lars Hjemli" <hjemli@xxxxxxxxx> writes: > On 5/25/07, Junio C Hamano <junkio@xxxxxxx> wrote: > ... >> I really do not want that (mis)conception that .gitmodules >> specify the default and .git/config the override. I really >> think we should use the .git/config as _the_ only authority to >> get URL, but keyed with the three-level scheme, with URL in >> .gitmodules used _solely_ as a hint when setting up the URL in >> the .git/config file. >> >> cf. $gmane/47502, 47548, 47621 >> > > I've read these articles, but I think much of the concerns about > trusting the url supplied by upstream goes away when the submodule > clone/checkout isn't an integrated part of the superproject > clone/checkout. Besides, if you trust your upstream enough to clone > their repository (the superproject), why wouldn't you trust the data > (.gitmodules) in that very repository? It's not about trusting. You would need to support the mapping for network connectivity reasons, and you would also need to notice and reconfirm when the suggested URL in .gitmodules changes (perhaps because the upstream relocated from sf.net to repo.or.cz ;-), you would need something like what I described in order to keep track of user preference for each submodule in .git/config anyway. If that "mapping" ends up to be ident mapping for most people, that is fine. At least by always doing the three-level mapping we would not have any special case in the code, and this is not the performance critical part of the system. I think the response to the case when upstream repository relocates from the ".gitmodule for default, .git/config for override" camp would be "you asked to override in .git/config, so it is your job to notice the change in .gitmodules and adjust your override URL". That is a serious mistake in usability point of view. Repository relocation would (hopefully) seldom happen, but when it does happen, things either would break (which is easier to diagnose and manually fix up), or things clone fine but we reach a wrong repository (which is harder to notice, as "fetch" may succeed -- it just would not fetch the right commit). Being able to notice when upstream repository relocates and to ask for confirmation when that happens would eliminate a lot of confusion from that.
Basically, I'd say that as long as the superproject names the sha1 of the submodule commit, nothing else matters. If you track a submodule, you would easily notice it if the submodule has the 'wrong' commit checked out (git diff, git status, git submodule status). And 'git submodule update' would synchronize the submodules you have decided to track, or error out with a message like "Unable to checkout '$sha1' in submodule '$path'". This is when the ugly sides of submodules raises its head (the 'official' repo has moved, my local repo is out of date, whatever). I just don't see the need for solving those problems now. The 'git submodule' command would make the common cases easier. Hopefully(?) that would encourage more people to test/use submodules, and the problems that actually _needs_ solving will then show up in due time.
> Another possibility is simply doing the submodule clone/checkout by > hand (i.e. do 'git clone preferred-url path', don't do 'git submodule > init path'). But that is what this patch is trying to help the users, isn't it? It reduces the attractiveness of this new tool greatly if you give up there.
Well, I happen to think that the average user of submodules wouldn't care the slightest bit where the submodule was cloned from, as long as the sha1 matches. So no, the patch was more about the lack of submodule porcelain and less about completeness.
>>When the name of the commit object in the >> superproject tree and/or index is 0{40}, it would be a good >> extension to use "whatever commit that happens to be at the tip >> of this branch" taken from the .gitmodules file. > > I really can't imagine what kind of superproject would have such a > setup. Why would this be needed? "We would work with any working version of Linux 2.6 kernel" would be a sensible thing to say, I would think.
Maybe. I wouldn't want to automatically track the tip of _any_ branch, since I would have no way of knowing if what works today will also work tomorrow (or even compile).
It's purely optional, and as you seem to agree always detaching HEAD is easier to explain, you do not need "module.$path.branch" at all. I just mentioned 0{40} as a possible use case for that configuration variable.
Ok. I'll redo the patch, removing the branch-specific things, and try to shut up :) -- larsh - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html