I've been having issues with my submodules downloading with my master repo.
Once I clone a repo, if I run git submodule update --recursive
the command just sits there for forever. It'll sit there all day long, I let it do it all day one day to make sure it wasn't because of waiting for downloading the files or something. (I have also tried git submodule update --init
and git submodule update --init --recursive
)
But if I cd
into the area where the submodule is and manually do a git clone https://somewhere.git
to download the submodule/repo into the correct place, it works fine.
I would just like this to be cohesive and all together in a single command
Any ideas?