hoi :) On Tue, Sep 26, 2006 at 03:33:49PM -0700, A Large Angry SCM wrote: > So, for each subproject of a parent project, you want to record branch, > version (commit ID), and directory location. Not quite as easy to do in > a makefile but do-able. I've been playing with this kind of subprojects a little bit. My current approach is like this: * create a .gitmodules file which lists all the directories which contain a submodule. * the .git/refs/heads directory of the submodule gets stored in .gitmodule/<modulename> inside the parent project * both things above should be tracked in the parent project. This way you always store the current state of each submodule in each commit of the parent project. And you don't have to create a new parent commit for each change. You can commit to the parent project when you think that all your modules are in a good state. * When checking out a project, all submodules listen in .gitmodules get checked out, too. * If there is a merge conflict in the module list or its refs/heads, this is handled specially, e.g. by triggering a new merge inside the submodule. * The object directory is shared between the parent and all modules. To make fsck-objects happy, the parent gets a refs/module link pointing to .gitmodule/ and all submodules get a refs/parent link pointing to the refs directory of the parent. The concept is similiar to the gitlink objects which have been floating around, but it is easier to prototype as no new git object type has to be created. If it works well we can later move the information stored in .gitmodule* into an object type of its own. By storing the complete refs/heads directory for each submodule instead of only one head, it is possible to track multiple branches of a subproject. I'm don't know yet how this works out in praktice but I think that it can be nice to be able to atomically commit to several branches of one submodule (perhaps one branch per customer, per hardware platform, whatever). So, what have I done up to now? Not much. I created a little script to set up a submodule as described above: http://git.admingilde.org/?p=tali/git.git;a=blob;f=git-init-module.sh;h=0108873fd3aa8a42035039b19e8555513c075fca;hb=module Next steps would be to modify clone and checkout to actually be able to work in such a setup. If this works then merging of subprojects has to be done (the most complex part I guess). -- Martin Waitz
Attachment:
signature.asc
Description: Digital signature