I have a git repository which is used across a team of 10+ developers. I have a few git submodule
s added into my repository. The submodules can of course be checked out by the following command.
git submodule update --init
But if I want that the submodule update
to happen automatically when someone does a git pull
, is it feasible? How can I do this?
Is there something I can do with git hooks ?