Submodules? Now you have more repositories!
git clone --recurse-submodules <repo>
You want to clone a repository with submodules included and updated to their latest version from the get-go? (Not recommended)
git clone --recurse-submodules --remote-submodules <repo>
git submodule update --init --recursive
git pull --recurse-submodules