How to install Git submodule project dependencies
News to me - Git projects can point to other Git projects. They call these “submodules”, the parent being the “superproject”. Here’s how you git a git repository’s submodules installed:
1. Git SuperProject Repository as usual:
git clone git://github.com/desired/repo
2. Initialize the SuperProject’s Submodules:
git submodule init
3. Git SuperProject’s Submodules:
git submodule update
Done!