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

Is there a way to automatically have git submodule update (or preferably git submodule update --init called whenever git pull is done?

Looking for a git config setting, or a git alias to help with this.

share|improve this question
1  
Related: stackoverflow.com/questions/1899792/… – philfreo Jan 6 '11 at 3:40
Why is a git alias preferable to a shell alias? – wnoise Jan 6 '11 at 3:57
7  
git aliases are nice because it encapsulates the command in the "git" namespace. You may as well ask why all git commands start with "git " instead of having their own names. – Kevin Ballard Jan 6 '11 at 4:00

4 Answers

git config alias.pullall '!git pull && git submodule update --init --recursive'

If you want arguments to be passed to git pull, then use this instead:

git config alias.pullall '!f(){ git pull "$@" && git submodule update --init --recursive; }; f'
share|improve this answer
The first one is easier to read. The second one is what I would actually recommend using in practice. – Kevin Ballard Jan 7 '11 at 22:25

Starting with Git 1.7.5 it should update submodules automatically by default like you want it to.
The default behavior, "on-demand", is to update submodules whenever you fetch a commit that updates the submodule commit, and this commit isn't already located in your local clone.
You can also have it updated on every fetch or never (pre-1.7.5 behavior I assume).
The config option to change this behavior is fetch.recurseSubmodules.

This option can be either set to a boolean value or to on-demand.
Setting it to a boolean changes the behavior of fetch and pull to unconditionally recurse into submodules when set to true or to not recurse at all when set to false.

When set to on-demand (the default value), fetch and pull will only recurse into a populated submodule when its superproject retrieves a commit that updates the submodule’s reference.

See:

for more information.

git fetch --recurse-submodules[=yes|on-demand|no]
share|improve this answer
5  
Watch out: as the answers below explain, this only fetches the changes automatically, you still have to do a submodule update -- so the alias answer is right. – Artem Nov 3 '11 at 16:02

I haven't earned enough S.O. reputation to be able to comment on other people's answers, so I'm forced to add an answer.

Kevin Ballard's git config aliases... answer is the correct answer to the original posted question on automatically running git submodule update after a git pull.

Christopher Rogers' fetch.recurseSubmodules answer will not automatically run git submodule update after a pull (which is what the question was). All this setting does is recurse into each submodule and do a git fetch in that submodule. You'll still need to manually run git submodule update after your pull, regardless of what fetch.recurseSubmodules is set to.

share|improve this answer

An alias, as suggested by Kevin Ballard, is a perfectly good solution. Just to toss another option out there, you could also use a post-merge hook which simply runs git submodule update [--init].

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.