프로젝트 종속성을 하위 프로젝트로 관리. 더 많은 정보: https://manpages.debian.org/latest/git-man/git-subtree.1.html.
git subtree add --prefix={{경로/대상/폴더/}} --squash {{repository_url}} {{branch_name}}
git subtree pull --prefix={{경로/대상/폴더/}} {{repository_url}} {{branch_name}}
git subtree merge --prefix={{경로/대상/폴더/}} --squash {{repository_url}} {{branch_name}}
git subtree push --prefix={{경로/대상/폴더/}} {{repository_url}} {{branch_name}}
git subtree split --prefix={{경로/대상/폴더/}} {{repository_url}} -b {{branch_name}}