git: submodule 생성 및 clone
개발자의 소통/Git 공부

git: submodule 생성 및 clone

git-scm.com/book/en/v2/Git-Tools-Submodules

 

Git - Submodules

Since the URL in the .gitmodules file is what other people will first try to clone/fetch from, make sure to use a URL that they can access if possible. For example, if you use a different URL to push to than others would to pull from, use the one that othe

git-scm.com

위의 공식 홈페이지에 깃 서브 모듈 생성 및 삭제, 클론 등이 자세히 적혀져 있다. 

 

오늘 소개 하려고 하는것은, 내가 프로젝트를 하면서 필요했던 간단하게 커멘드라인 한줄로 git submodule이 있는 레파지토리를 클론 하는 방법이다. 

 

git clone --recurse-submodules https://github.com/chaconinc/MainProject

이 커멘드 라인 처럼 클론과 내가 클론하는 레파지토리 사이에 --recurse-submodules를 붙여주면 된다.