Github页面缺少子模块?

时间:2016-06-26 16:19:15

标签: github github-pages

我按照确切的说明(不止一次)制作了一个github页面网站,我收到了一封包含此错误的电子邮件

The page build failed with the following error:

The submodule `msgBored` was not properly initialized with a `.gitmodules` file.  

它链接我的页面告诉我绝对没有关于如何解决这个问题,我对Github很新,这是我第一次尝试它。谢谢!

1 个答案:

答案 0 :(得分:1)

" Page build failed: Missing submodule"。

中提到了这一点

您可以查看子模块是否初始化为:

cd /path/to/main/repo
git submodule init
git submodule update

但是如果你没有任何.gitmodules,那么它实际上是a nested git repo,你需要在之前删除该条目(如果你真的需要它),将它添加为正确的子模块< / p>

 cd /path/to/main/repo
 git rm mysubmodule # no trailing slash
 git submodule add -- /url/to/submodule/remote/repo