## game 游戏业务代码 ### 子仓库 #### 初始化子仓库 ``` git submodule update --init --recursive ``` #### 更新子仓库 ``` git submodule update --remote ``` #### 设置拉取主仓库同时拉取子仓库 ``` git config --global submodule.recurse true ```