Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

拉取主仓库

同步主项目加上 --recurse-submodules 递归拉取子项目

git clone git@github.com:smallcgq/xbook.git --recurse-submodules

添加其他仓库到当前仓库

git submodule add https://github.com/alex-shpak/hugo-book themes/book

git clone https://github.com/alex-shpak/hugo-book --recursive
  • 添加完成项目根目录下会多出一个 .gitmodules 文件

同步其他仓库更新

//一步到位,不用挨个查找,直接遍历一遍
git submodule foreach git pull

删除submodule

git submodule deinit themes/book