> > While trying to sum up some things I'd like submodules to do, and things > like that, I came to ask myself why the heck we were doing things the > way we currently do wrt submodules. > > This question is related to the `.git` directories of submodules. I > wonder why we didn't chose to use a new reference namespace > (refs/submodules/$path/$remote/$branch). > I'm maybe being a bit slow - what would be the contents of (say) refs/submodules/moduleA/remotes/origin/master ? The ref that's currently in moduleA/.git/refs/remotes/origin/master ? > This would have the net benefit that most of the plumbing tasks would be > easier if they have to deal with submodules, because they aren't in this > uncomfortable situation where they have to recurse into another git > directory to know what to do. > > It also has the absolutely nice property to share objects, so that > projects that replaced a subdirectory with a submodule don't see their > checkouts grow too large. > Ah.. are you meaning that the top-level repository contains all the commits in all the submodules? > We probably still want submodules to act like plain independant git > repositories, but one can still *fake* that this way: submodules have > only a .git/config file (also probably an index and a couple of things > like that, but that's almost a different issue for what I'm considering > now) that has the setting: > > [core] > submodule = true > > This could make all the builtins look for the real $GIT_DIR up, which in > turn gives the submodule "name". Then, for this submodule, every > reference, remote name, ... would be virtualized using the > "remote/$submodule_name" prefix. IOW, in a submodule "some/sub/module" > the branch "origin/my/topic/branch" is under: > refs/submodules/some/sub/module/origin/my/topic/branch > <-- submod. --><-- submod. --><-- --><-- branch --> > namespace path/name remote > Note that this doesn't mean that we must rip out .gitmodules, because > it's needed to help splitting the previous reference name properly, and > for bootstrapping purposes. > I was thinking a bit about submodules (because of the earlier discussions about submodule update only pulling from origin, and the associated difficulties) and started wondering if the best place for the git repository for (say) submoduleA was really <...>/submoduleA/.git/<> and not (say) something like .git/submodules/submoduleA/<>. This would be nicer for people trying to pull revisions from you because they could easily find submodule repositories regardless or not of whether they currently exist in your WC. I got as far as looking at discussions around .gitlink but ran out of avaiable time. > > Having that, one can probably extend most of the porcelains in _very_ > straightforward ways. For example, a local topic branch `topic` would be > the union of the supermodule `topic` branch, and all the > `refs/submodules/$names/topic` ones. > > Most importantly, it would help implementing that tries to make your > submodules stay _on branch_. One irritating problem with submodules, is > that when someone else commited, and that you git submodule update, > you're on a detached head. Absolutely horrible. If you see your current > branch (assume it's master), then when you do that, you would update > your `refs/submodules/$name/master` references instead and keep the > submodule HEADs `on branch`. Of course we can _probably_ hack something > together along those lines with the current setup, but it would be _so_ > much more convenient this way... > For me, if I'm on heads/blah in the superproject, I probably want to be on heads/blah in *all* submodules. But that's maybe just me. -- 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