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

I have a project with a git submodule. It is from an ssh://... URL, and is on commit A. Commit B has been pushed to that URL, and I want the submodule to retreive the commit, and change to it.

Now, my understanding is that git submodule update should do this, but it doesn't. It doesn't do anything (no output, success exit code). Here's an example:

$ mkdir foo
$ cd foo
$ git init .
Initialized empty Git repository in /.../foo/.git/
$ git submodule add ssh://user@host/git/mod mod
Cloning into mod...
user@host's password: hunter2
remote: Counting objects: 131, done.
remote: Compressing objects: 100% (115/115), done.
remote: Total 131 (delta 54), reused 0 (delta 0)
Receiving objects: 100% (131/131), 16.16 KiB, done.
Resolving deltas: 100% (54/54), done.
$ git commit -m "Hello world."
[master (root-commit) 565b235] Hello world.
 2 files changed, 4 insertions(+), 0 deletions(-)
 create mode 100644 .gitmodules
 create mode 160000 mod
# At this point, ssh://user@host/git/mod changes... submodule needs to change to.
$ git submodule init
Submodule 'mod' (ssh://user@host/git/mod) registered for path 'mod'
$ git submodule update
$ git submodule sync
Synchronizing submodule url for 'mod'
$ git submodule update
$ man git-submodule 
$ git submodule update --rebase
$ git submodule update
$ echo $?
0
$ git status
# On branch master
nothing to commit (working directory clean)
$ git submodule update mod
$ ...

I've also tried git fetch mod, which appears to do a fetch (but can't possibly, because it's not prompting for a password!), but git log and git show deny the existence of new commits. Thus far I've just been rm'ing the module and re-adding it, but this is both wrong in principle and tedious in practice.

Thanks for all the help...

share|improve this question

3 Answers

up vote 104 down vote accepted

The git submodule update command actually tells git that you want to use whatever commit state is currently checked out in your submodules. If you want to update the submodules, you will need to do this directly in your submodules.

So in summary:

# get the submodule initially
git submodule add ssh://bla submodule_dir
git submodule init

# time passes, submodule upstream is updated
# and you now want to update

# change to the submodule directory
cd submodule_dir

# checkout desired branch
git checkout master

# update
git pull

# get back to your project root
cd ..

# now the submodules are in the state you want, so
git commit -am "Pulled down update to submodule_dir"

Or, if you're a quite busy person:

git submodule foreach git pull origin master
share|improve this answer
3  
This is wrong - instead of git submodule update at the end, you want git add submodule_dir and git commit -m "Update the submodule. What you've suggested will just move the submodule back to the version that is committed in the main project. – Mark Longair Apr 29 '11 at 6:14
67  
git submodule foreach git pull – Mathias Bynens Nov 13 '11 at 16:39
2  
@MathiasBynens: You have to check out a branch on the submodule since it is in a detached state by default. – Nicklas A. Dec 4 '11 at 20:09
30  
@Nicklas In that case, use git submodule foreach git pull origin master. – Mathias Bynens Dec 5 '11 at 10:59
7  
Use: git submodules update --init – Vitaly Fadeev Jun 20 '12 at 6:58
show 3 more comments

Your main project points to a particular commit that the submodule should be at. What git submodule update does is to try to checkout that commit in each submodule that has been initialized. The submodule is really an independent repository - just creating a new commit in the submodule and pushing that isn't enough, you also need to explicitly add the new version of the submodule in the main project.

So, in your case, you should find the right commit in the submodule - let's assume that's the tip of master:

cd mod
git checkout master
git pull origin master

Now go back to the main project, stage the submodule and commit that:

cd ..
git add mod
git commit -m "Updating the submodule 'mod' to the latest version"

Now push your new version of the main project:

git push origin master

From this point on, if anyone else updates their main project, then git submodule update for them will update the submodule, assuming it's been initialized.

share|improve this answer

@Jason is correct in a way but not entirely.

update

Update the registered submodules, i.e. clone missing submodules and checkout the commit specified in the index of the containing repository. This will make the submodules HEAD be detached unless --rebase or --merge is specified or the key submodule.$name.update is set to rebase or merge.

So, git submodule update does checkout, but thing is, it is to the commit in the index of the containing repository. It does not yet know of the new commit upstream at all. So go to your submodule, get the commit you want and commit the updated submodule state in the main repo and then do the git submodule update

share|improve this answer
It seems that if I move the submodule to a different commit, and then run git submodule update, update will move the submodule to the commit that is specified in the current HEAD of the superproject. (whatever the most recent commit in the superproject says the subproject should be at — this behavior, after the explanation in Jason's post, seems logical to me) It also appears to fetch, but only in the case that the subproject is on the wrong commit, which was adding to my confusion. – Thanatos Apr 29 '11 at 6:06

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.