I'm trying to clone on my repo from GitHub in another machine (Windows). I create a new directory and I ran the following commands in the new directory:
git init .
git remote add origin https://github.com/meme/myRepo.git
git pull origin master
git push -u origin master
To make pull on the submodules I'm using I ran:
git pull --recurse-submodules
But nothing was showing in the submodules directory and then I ran:
git submodule update --recursive
But still nothing is showing on the submodules directory.
Any of you knows what I'm doing wrong or how can I pull the submodules files?
I'll really appreciate your help.