Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How does git submodule add -b work?

After adding a submodule with a specific branch, a new cloned repo (after git submodule update --init) will be at a specific commit, not the branch itself (git status on the submodule shows "Not currently on any branch").

I can't find any information on .gitmodules or .git/config about the submodule's branch or any specific commit, so how does git figure it out?

Also, is it possible to specify a tag instead of a branch?

Thanks!

PS: I'm using 1.6.5.2.

share|improve this question

4 Answers

up vote 166 down vote accepted

It's a little confusing to get used to this, but submodules are not on a branch. They are, like you say, just a pointer to a particular commit of the submodule's repository.

This means, when someone else checks out your repository, or pulls your code, and does git submodule update, the submodule is checked out to that particular commit.

This is great for a submodule that does not change often, because then everyone on the project can have the submodule at the same commit.

If you want to move the submodule to a particular tag:

cd submodule_directory
git checkout v1.0
cd ..
git add submodule_directory
git commit -m "moved submodule to v1.0"
git push

Then, another developer who wants to have submodule_directory changed to that tag, does this

git pull
git submodule update

'git pull' changes which commit their submodule directory points to. 'git submodule update' actually merges in the new code.

share|improve this answer
2  
That's a very good explanation, thanks! And of course, after reading your answer, I realized the commit is saved inside the submodule itself (submodule/.git/HEAD). – Ivan Nov 22 '09 at 18:19
Is it possible to achieve something like svn branching but with submodules ? In svn you can create a branch and then merge that with the trunk ( and possibly also with other existing branches). Then you can merge all of them with the trunk. Is something like this possible, but with Git submodules ? – Hamidam Dec 1 '11 at 12:41
2  
This doesn't seem to work on git 1.7.4.4. cd my_submodule; git checkout [ref in submodule's repository yields fatal: reference is not a tree: .... It's as if git will only operate on the parent repository. – James A. Rosen May 4 '12 at 21:12
It's good to use git submodules even for projects that are updated often. The linux kernel uses it and it isn't so bad – omouse Apr 30 at 18:15

A example of how I use git submodules.

  1. Creates a new repo
  2. Then clones another repo as submodule
  3. Then we have that submodule use a tag called V3.1.2
  4. And then we commit

And that looks a little bit like this:

git init 
vi README
git add README
git commit 
git submodule add git://github.com/XXXXX/xxx.yyyy.git stm32_std_lib
git status

git submodule init
git submodule update

cd stm32_std_lib/
git reset --hard V3.1.2 
cd ..
git commit -a

git submodule status

maybe it helps? (even thou I use a tag and not a branch)

share|improve this answer
It's basically the same answer as djacobs7, but thanks anyway :) – Ivan Nov 22 '09 at 18:22
Should you be able to commit a change after your git reset --hard V3.1.2? I just get a "nothing to commit" with a git status of the parent directory. – Nick Radford Oct 10 '12 at 20:07

git submodules are a little bit strange - they're always in "detached head" mode - they don't update to the latest commit on a branch like you might expect.

This does make some sense when you think about it, though. Let's say I create repository foo with submodule bar. I push my changes and tell you to check out commit a7402be from repository foo.

Then imagine that someone commits a change to repo bar before you can make your clone.

When you check out commit a7402be from repo foo, you expect to get the same code I pushed. That's why submodules don't update until you tell them to explicitly and then make a new commit.

Personally I think submodules are the most confusing part of git. There are lots of places that can explain submodules better than I can. I recommend Pro Git by Scott Chacon.

share|improve this answer
I think it's time I start reading some git books, thanks for the recommendation. – Ivan Nov 22 '09 at 18:21
Sorry, but you didn't clarify if one would get the same as you pushed to a7402be , or get the latest of bar, though your version of foo. Thanks :) – Hamidam Dec 1 '11 at 12:44
The issue is that there should be an option to say "keep this submodule on branch X" so that if you WANT it to automatically update itself then you can make that happen. It would make submodules much more useful for managing e.g. a WordPress installation where plugins are all Git repos without having to re-save the superproject for every plugin that updates. – jeremyclarke Oct 25 '12 at 18:23
@jeremyclark git clone git://github.com/git/git.git and push that feature...? =D – Alastair Nov 7 '12 at 4:01

Git 1.8.2 added the possibility to track branches.

# add submodule to track master branch
git submodule add -b master [URL to Git repo];

# update your submodule
git submodule update --remote 

See also Git submodules

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.