Hi, On Tue, 29 Apr 2008, Tim Harper wrote: > 1) The submodule stays in the working copy when changing to a branch > that does not have a submodule. This can break a build and cause > problems. To work around, I have to delete the folder completely > (git-clean). Then, when I switch back to the branch again, I have to > re-download the submodule. The problem, of course, is that you can easily have valuable, but not-tracked, files in there. Deleting the submodule is therefore no option. > 2) I have to type "git checkout branch && git submodule init && git > submodule update" to be sure that I really have the whole contents of > the branch. That's 3 commands, and a lot of typing. There is no way around "checkout branch", and I think that is a good thing. But once you did "submodule init", you will never need to run it again, since it edits your .git/config, which does not change when switching branches. And as for "submodule update", I like the fact that the submodule is not updated automatically. For example, when I actively develop a submodule, but have to rebase the superproject, I would _hate_ it if the submodule wass updated. The whole idea about submodules is that they are repositories of their own right, and therefore the superproject should not mess with them, _unless_ explicitely asked to, with "submodule update". > 3) If I don't run "git submodule update", and carelessly run "git commit > -a" or "git add .", I risk propagating a submodule version from > another branch or undoing an important change. git commit -a is something that might make sense for newbies, but you really should learn to use git add -p and commit without -a. > SUGGESTED ALGORITHM (AS HAS BEEN IMPLEMENTED IN THE GIT TEXTMATE BUNDLE) > When pulling / merging / changing branches: > 1) cache all submodules to ~/.git/submodules_cache > a) move from the working directory to a folder that is a MD5 hex-hash of > both the submodule path and the submodule url > 2) execute the pull / merge / branch change > 3) restore all defined submodules to ~/.git/submodules_cache (only the > submodules that are still defined after the merge / change / pull) > 4) execute git submodule init && git submodule update > > > PITFALLS: > pitfall) > If you commit a change on a submodule that's not on a branch, auto-updating > submodules will make it difficult to revive that change. > > workaround) > Don't allow the user to commit unless they are on a branch. > > ... couldn't think of anymore. Anyone? I do not like that. I think that the user should be responsible to take care of the up-to-dateness of the submodule. As far as the superproject is concerned, it just keeps track of the committed submodule state, but does not enforce it. FWIW I restarted on my --ignore-submodules patch, which can be seen here: http://repo.or.cz/w/git/dscho.git?a=shortlog;h=refs/heads/my-next It lacks tests, therefore it has not been submitted for review yet. The basic idea is that not only "checkout" ignores the _contents_ of the submodules, but optionally "diff", and using that option "stash" and "rebase". IOW you can "stash apply" even if the submodule is dirty. Which makes sense, given that "stash" succeeds, too... Ciao, Dscho -- 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