개발
깃헙 sub repo 관련 명령어
제이콥
2020. 3. 6. 14:25
깃헙에서 sub repo 포함해서 모두 가져오기
git clone --recursive https://github.com/aibraininc/gretchen-package.git
깃헙에서 sub repo 만드는 방법
git submodule add <remote child repo>
모든 sub repo update
git submodule update --init --recursive
git pull --recurse-submodules