克隆具有子模組的 Git 儲存庫

克隆使用子模組的儲存庫時,你需要初始化並更新它們。

$ git clone --recursive https://github.com/username/repo.git

這將克隆引用的子模組並將它們放在相應的資料夾中(包括子模組中的子模組)。這相當於克隆完成後立即執行 git submodule update --init --recursive