728x90 subtree2 [Git] Subtree 관리하기(push, pull) Parent 폴더에서 관리하기 기존 Git 관리처럼 하되 commit message 를 구분하고 싶다면 자신만의 tag 를 이용하여 commit 후 push 한다. $ git add { child path item } $ git commit { [Repo name] Commit message } $ git push { branch name } Child 폴더에서 직접 관리하기 Child 폴더를 직접 관리하기 위해서는 반드시 아래와 같이 사용해야한다. Remote 저장소에 Parent 저장소가 Child 를 push 되어있는 상태에서만 가능하다. # push $ git subtree push --prefix { child path } { remote name } { child branch } # pull .. 2020. 12. 19. [Git] Subtree - 하나의 저장소에서 여러 repo 관리하기 A-Sample, B-Sample, C-Sample Repository 를 Z-Sample 폴더에서 관리하기. 1. Base Repository clone 먼저 Github이나 Gitlab 같은 저장소에 Repository 를 만듭니다. 그 후 Clone 합니다. $ git clone https://github.com/{사용자 이름}/Z-Sample.git 2. 저장소 가져오기 subtree 명령어를 이용하여 저장소 데이터를 가져옵니다. $ git subtree add --prefix=A-Sample https://github.com/{사용자 이름}/A-Sample.git master $ git subtree add --prefix=B-Sample https://github.com/{사용자 이름}/B-S.. 2020. 12. 19. 이전 1 다음 728x90