We\'re using git submodules to manage a couple of large projects that have dependencies on many other libraries we\'ve developed. Each library is a separate repo brought int
Henrik is on the right track. The 'foreach' command can execute any arbitrary shell script. Two options to pull the very latest might be,
git submodule foreach git pull origin master
and,
git submodule foreach /path/to/some/cool/script.sh
That will iterate through all initialized submodules and run the given commands.