Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 322 Bytes

File metadata and controls

10 lines (7 loc) · 322 Bytes

submodule 명령어

상의 모듈에서 서브 모듈 등록
git submodule add "하위 서브 모듈 주소"

서브 모듈의 최신 커밋 한번에 pull하기
git submodule update --remote

서브 모듈까지 한번에 clone
git clone --recurse-submodules "github 주소"