Hugo将主题添加为子模块
首先,我们需要把博客从仓库里拉取到本地
删除原有的子模块配置,以及清空子模块所有内容
然后再将新的Hugo主题仓库,添加到自己的博客仓库 “themes/” 文件夹中,作为子模块
一、远程拉取子模块到主项目
把博客从自己仓库拉取下来,发现主题没有一起被拉取
正确做法如下,到博客的根目录下执行下面的命令
git submodule update --init --recursive
二、彻底删除项目中的子模块 ( deinit )
ps:以下命令均在博客的根目录下执行
- 从 .git/config 配置文件中删除子模块配置的命令
`git submodule deinit -f path/to/submodule`
# 示例操作:我的旧主题的子模块所在位置
`git submodule deinit -f themes/zzo`
- 从 .git/modules 目录下,移除子模块的相关记录
`rm -rf .git/modules/path/to/submodule`
# 示例操作
`rm -rf .git/modules/themes/zzo`
- 清空本地子模块文件夹下的所有文件
`git rm -f path/to/submodule`
# 示例
`git rm -f themes/zzo`
三、删除后,添加子模块
git submodule add https://github.com/zzossig/hugo-theme-zzo.git themes/zzo
四、以后更新子模块
git submodule update --remote --merge