If I add a submodule:
git submodule add git://github.com/chneukirchen/rack.git rack
A file .gitmodules is created alike:
[submodule "rack"]
path = rack
url = git://github.com/chneukirchen/rack.git
And of course git knows about it:
git submodule status
30fb044db6ba5ea874ebc44a43bbd80a42676405 rack (1.3.0-64-g30fb044)
If I had a submodule by hand, for example, adding to that file:
[submodule "redcloth"]
path = plugins/redcloth
url = git://github.com/jgarber/redcloth.git
And repeating the previous command:
git submodule init
Submodule 'rack' () registered for path 'rack'
git submodule update
(no output)
git submodule status
30fb044db6ba5ea874ebc44a43bbd80a42676405 rack (1.3.0-64-g30fb044)
So, as I can see, what I am adding by hand is ignored. There's some way to make git knows lines added by hand in the .gitmodules file?
Note: I've also try to add the lines by hand to the .git/config file and doesn't work either.
git submodule initandgit submodule update? – larsks Oct 3 '11 at 0:53