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.
|
Is there a way to automatically have Looking for a git config setting, or a git alias to help with this. |
|||||||||||
|
|
If you want arguments to be passed to git pull, then use this instead:
|
||||
|
|
Starting with Git 1.7.5 it should update submodules automatically by default like you want it to.
See:
for more information.
|
|||||
|
|
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 Christopher Rogers' |
||||
|
|
|
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 |
|||
|
|