My use case it this: We have some huge projects (let's call them supermodules) that are the only products we really release. Any change going into any of the submodules go in solely to modify the superproject, the submodules are not released on their own. We cannot keep the supermodule with all its submodules in one git repository for two reasons: Size & sharing. A 6GB+ repository is too big to handle gracefully, and there are multiple superprojects sharing some of the submodules. Our supermodules typically contains 50-250 submodules. Usually it is sufficient to look at just a few of these submodules at the same time. I looked into the current git submodules to see if they support what I think we need, but it seems like they do not really cut it (If I'm wrong about this, please educate me). What I want is this: Somewhere the following modules all exist: supermodule/ submodule1 submodule2 submodule3 ... submodule200 You pull the supermodule, and initialize random collection of submodules, e.g. locally you have: supermodule/ submodule13 submodule71 submodule102 Now I want this to behave as if it was a partial checkout of "supermodule" - i.e. I want _all_ operations in any of the submodules to act as if they happened in all the submodules (as if supermodule was a single repository containing all the submodules directly). If I do a change in submodule13, another change in submodule71 and yet another change in submodule102, I want to be able to commit them all as ONE commit (obviously it will be 4 commits, 1 in each submodule and one in the supermodule, but anyone looking at this in the context of this supermodule should see it as one commit). If I pull supermodule, I get updates to supermodule, submodule13, submodule71 and submodule102, but nothing else. If I make a branch on submodule71, the branch is made in all submodules & the supermodule. With this setup it should be possible to handle supermodule as a normal module with branches for each feature/topic/bugfix, and those features being merged into other branches in a reasonable way. Does something like this look doable? - Finn Arne - 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