1. Move folder to it’s own branch
git subtree split -P name-of-folder -b name-of-new-branch
2. Initialize the new Repository
git checkout new-repository-url
git pull path-to-big-repository name-of-new-branch
And that’s it, pretty much!
Thoughts
1. Move folder to it’s own branch
git subtree split -P name-of-folder -b name-of-new-branch
2. Initialize the new Repository
git checkout new-repository-url
git pull path-to-big-repository name-of-new-branch
And that’s it, pretty much!