submodule 이란 git repo 가 하위 폴더에 다른 repo 의 특정 브랜치를 지정해 함께 유지하고 있는것
$ git clone --rescursive https://github.com/xxxx/xx.git
위와 같이 –recursive 옵션을 포함해 clone 해주면 repo 내부에 recursive 하게 clone 을 수행한다
혹은
이미 clone 받았는데 submodule 을 미쳐 가져오지 못했을경우
git submodule update --init --recursive
위와같이 update 하게 되면 submodule 을 포함해 사용할 수 있게 된다
댓글 남기기