Is it possible for a git submodule to be made of several other git submodules, and the super git repo to fetch the contents for each submodule?
I have tried to do th
As mentioned in Retrospectively add --recursive to a git repo
git submodule update --init --recursive
should work.