Hi,
I have a git repo as my master project. It has some sub-modules added to it.
It look like:
~/super_project/ <- main git repo
~/super_project/plugins/admin <- sub-module
~/super_project/plugins/editor <- sub-module
All that's fine, its committed and working. But when I push the super project to origin/master, and then clone it down to another machine, no sub-modules get pulled.
Ive tried git submodule init
and git submodule update
and git submodule update --init
, they all have no effect.