git add出现 "fatal: in unpopulated submodule XXX" 错误

2023-05-05 19:08:56 浏览数 (1)

git add出现 “fatal: in unpopulated submodule XXX” 错误:

当前处于: F:217my_optLogs01系统相关系统设计07oschinaydgw2407.github.iothemes 下面有目录2个:

hexo-theme-matery landscape

因为hexo-theme-matery是从另一个第三方的仓库克隆的,在执行git add的时候"fatal: in unpopulated submodule hexo-theme-matery" 错误

解决办法,在当前目录打开git bash,执行:

代码语言:javascript复制
git rm -rf --cached hexo-theme-matery
git add hexo-theme-matery/*

可以看到该目录已经add成功。

0 人点赞