😺
Gitサブモジュールについて
サブモジュールの追加
git submodule add <submodule-repository-url> <directory>
サブモジュールの更新
git submodule update --remote
サブモジュールを初期化して更新
git submodule update --init --recursive
git submodule add <submodule-repository-url> <directory>
git submodule update --remote
git submodule update --init --recursive
Discussion