1611 shaares
17 private links
17 private links
1 result
tagged
subtree
If you need to manage multiple projects within a single repository, you can use a subtree merge to handle all the references.
Typically, a subtree merge is used to contain a repository within a repository. The "subrepository" is stored in a folder of the main repository.
The best way to explain subtree merges is to show by example. We will:
Make an empty repository called test that represents our project
Merge another repository into it as a subtree called Spoon-Knife.
The test project will use that subproject as if it were part of the same repository.
Fetch updates from Spoon-Knife into our test project.