Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git submodules in .gitmodules not initialized

https://github.com/Uni-/shBrushesCollection

I created a GitHub repository and made a .gitmodules file directly from GitHub's web source editor. When I then cloned the repo, I noticed the submodules in .gitmodules were not being initialized.

I think I tried almost all commands possible, including update, init, update --init and so on. Is there a way to use current .gitmodules file, not submodules add?

like image 795
eonj Avatar asked Feb 16 '23 01:02

eonj


1 Answers

Writing a submodule isn't enough.

You should rather use git submodule add: that will update your .gitmodules file and create a special entry in the index (where you want that submodule to be loaded).

Then, when you push that to your upstream repo on GitHub, the project page will display those special entries as a green folder.

green folder

like image 62
VonC Avatar answered Feb 19 '23 03:02

VonC