I have a strange problem with "git submodule init"
When I added the submodules using "git submodule add url location" it cloned the repository just fine and everything was ok.
When I pushed all my changes back to the parent repository, added the .gitmodules files, etc and cloned the repository back, I tried to initialise all the submodules using "git submodule init"
And nothing happens :( Literally nothing, no output, no extra files, it does not even attempt to do anything actually.
So I am wondering, what did I do wrong?
.gitmodules:
bash$ cat .gitmodules
[submodule "projects/subprojectA"]
path = projects/subprojectA
url = ssh://[email protected]/test/projectA.git
[submodule "projects/subprojectB"]
path = projects/subprojectB
url = ssh://[email protected]/test/projectB.git