最佳答案
To populate a repository's submodules, one 典型的调用:
git submodule init
git submodule update
在这种用法中,git submodule init似乎只做一件事: 用 .gitmodules中已有的信息填充 .git/config。
这有什么意义呢?
git submodule update不能简单地使用来自 .gitmodules的信息吗? 这将避免两者:
git submodule init) ; 以及.gitmodules内容到 .git/config)。或者:
git submodule init用例(在这种情况下,请告诉我!) ;git submodule init是可以在 Git 中弃用而不会造成任何伤害的未加工部件。哪一个是真的?