Github Subtree
1. Parent Repository 생성 후 로컬에 Clonegit clone https:// 깃주소---------------------------------------------------// 기존 존재하는 repository로 작업을 진행하는 경우mkdir [parents repository name] // Parents 폴더 생성cd [parents repository name] // Parents 폴더로 이동// origin 연결git remote set-url --push origin 2. Child Repository 병합git subtree add --prefix=[child repository name] [child git URL] [Branch]3. Parent Repository P..
2024.07.25