views:

104

answers:

1

I've two or more projects (let's call them ProjectFoo and ProjectBar) having some common code that I put in a submodule.

My understanding is that if I commit changes to a submodule from within ProjectFoo it'll be in a detached head that only all ProjectFoo clones can see:

(master) $ cd ProjectFooBarCommoneSubmodule/
(master) $ git commit -am "Common code fix."
(56f21fb0...) $ git push
Everything up-to-date

That's probably because the master branch hasn't changed. I could probably do something like git checkout master && git merge Everything up-to-date but that seem pretty ugly. May be a git reset --hard master would do the same but it seems even uglier.

How to have a common code shared by project, updated from within those projects using it? In other words, committing to that submodule should update all various repositories (repositories, not just clones) that use this same submodule.

---- EDIT ----

Visibly my checked-out repository was messed up and broken. It should have worked right from the start like that (on ProjectFoo in this example):

(master) $ cd ProjectFooBarCommoneSubmodule/
(master) $ git commit -am "Common code fix."
(master) $ git push
....
   fbfdd71..0acce63  master -> master
(master) $ cd ..
(master) $ git add ProjectFooBarCommoneSubmodule
(master) $ git commit -m "Submodule update."

Then to get that change from on other projects, like ProjectBar:

(master) $ cd ProjectFooBarCommoneSubmodule/
(master) $ git pull

Would update to the latest common code. A git checkout master may be required if it's on a detached head.

+3  A: 

Short answer:

cd ProjectFooBarCommoneSubmodule
git checkout master
<Do your editing>
git commit --all -m "Lots of fixes"
cd ..

git add ProjectFooBarCommoneSubmodule
git commit -m "Bumped up the revision of ProjectFooBarCommoneSubmodule"
git push origin master

The longer one:

Git submodules are a dependency mechanism, where the main project (say A) defines a specified revision in a subproject (say B), which will be used in building project A. In order for the tool to be useful the behavior has to be predictable from A:s point of view. Dependencies cannot change, unless somebody decides to incorporate the change to project A. All kinds of nasty things could happen, were project B:s changes automatically imported, of which compile errors are probably the best ones, as A would notice the failures immediately. This is why B:s head is kept in detached state.

The state of B is store in A (check out git submodule status), and a revision change has to be done and committed in A, in order for it to have any effect. This is what happens in the example above, A changes the revision number stored in the repo, and bumps up the version to the latest one. The process will have to be repeated in the other main repo as well, so no automatic "use master" switch AFAIK.

BTW. The Git book chapter on submodules and the submodule man page contain lots of useful info about submodules, as normal usage and typical pitfalls as well. Worth checking out.


EDIT: I'll try to explain this better

I took the liberty to create example projects on my github account. The commits are meaningless and contain junk, but the setup should be fine. Please check it out to follow.

Both ProjectFoo and ProjectBar share the code in the common submodule.

ProjectFooBarCommoneSubmodule:master is 6850e4e4c1fac49de398

In ProjectFoo:

git submodule status

-6850e4e4c1fac49de39890703f21486ca04b87a0 common

In ProjectBar:

git submodule status

-6850e4e4c1fac49de39890703f21486ca04b87a0 common

So both point to the same revision, right? The trick here is to see, that ProjectFoo and ProjectBar point to the revision (6850e4e4c1fac49de39890703f21486ca04b87a0) not the branch (master), although they are the same thing. The first one is a detached head, and the other a named branch.

If you want to do some fixing on ProjectFooBarCommoneSubmodule, you can go to the subdir in e.g. ProjectFoo, and choose the branch instead of the revision:

git checkout master 
<Do your coding and pushing here>

Then go one directory up, and check git submodule status. It should tell you, that you are now out of sync. E.g

git submodule status

+e24bd2bf45d52171a63b67ac05cd4be0ac965f60 common (heads/master-1-ge24bd2b)

Now you can do a git add, to set the reference to this particular commit(ge24bd...), do a commit, and after this the submodule reference points to this revision, which also happens to be master on ProjectFooBarCommoneSubmodule.

Now you need to update the reference in ProjectBar as well. Go to ProjectBar/common, and do git fetch origin (this is a fast forward merge), do

git checkout master 
cd ..
git add common
git commit -m "Bumped up the revision"
git push origin master # to publish the revision bump to everybody else

So, as with any git repository, you don't need to work on a detached head. You can either work on master, or create a named branch. Either way, make sure that upstream contains the ProjectFooBarCommoneSubmodule changes, or you will break both ProjectFoo and ProjectBar, if they reference something that doesn't exist. Hope this explained it better

Kai Inkinen
Thanks, I saw that chapter. Sadly I didn't find a clear answer my question. You say there is no automatic use master, so what if a common subproject, let's say a library, updates? Isn't a `git submodule update` going to update all projects relying on that library? I'd like to do the same but update that library directly from any of my main project. If that's not possible, what would be the alternative?
Wernight
Git repositories do not contain any info about who has cloned them. This is why it's impossible to push out changes to all clones. Making things simple, I think you're expecting something like symlinks, so anything would be propagated immediately, while clones are more like "tar, gzip, copy, unzip". The key is probably to just publish the changed revision number in Foo and Bar. Anyone fetching changes will see the changed revision number the next time. Anything better than that, I would say, no.I would be glad to be proven wrong in this, though.
Kai Inkinen
Sure clones have to make a update or pull manually. My question is, how to? Two projects, not clones, sharing a common code in a Git submodule. Is there any other choice than ProjectFoo commits submodule to detached head, then ProjectBar (NOT a clone) merges the changes (if that's even possible, I don't know where those changes are stored).
Wernight
Seem much more clear. Could you just write some details about your section `git checkout master <Do your coding and pushing here>`? It's the part where after a `git commit` I'm in a detached head and cannot update "master" branch simply.
Wernight
If you do a checkout master, you say that you want to work on this current branch. I.e. the next commit will be the head of master, when you commit, and it will also show up on upstream.Compare this to doing a checkout on a tag. In this case the tag will not move, if you change and commit, so it's a detached head. So the submodule detached head is basically a tag. It points to revision, and will move only if explicitly asked to. When you do the checkout master, you actually select a branch to work on. The commit in the main project again "tags" the revision to be used in the module.
Kai Inkinen
Wernight
Possible issues:1) On ProjectBar you do pull and submodule update, but you have not yet updated ProjectBar or the submodule version, i.e. you get back the previous version (fe2530...)2) Submodule is on a detached head, meaning that pull shouldn't be able to merge int the changes cleanly. The detached head should not change3) Submodule master has not been changed during pull, because of 2. The submodule master still points to , without a warning. Submodule master still points to fe25304) A fetch could get all the changes, and then you could move master to remotes/master
Kai Inkinen
It would most probably be beneficial to have a look at what's going on using gitk --all. The graph can be a great tool for problem solving in these cases.
Kai Inkinen
I seems that even though I committed locally it didn't update the remote. Meaning even clones of ProjectFoo cannot correctly update the submodule. I'm trying to find out why...
Wernight
I'll mark it a accepted as you actually helped me quiet a lot even though the problem wasn't visibly my commands but the messed up repository which didn't work as expected.
Wernight
Glad your problem was solved anyway.
Kai Inkinen