Assume we have monorepo at [email protected]/haydenk/monorepo.git
With directory contents:
packageA/
packageB/
packageC/
I did say simple
- Create the new repository.
[email protected]/haydenk/packageA.git
- Clone the repository into an appropriate name for the new repository.
git clone [email protected]/haydenk/monorepo.git packageA/
- Replace the origin remote with the new repository.
git remote remove origin
git remote add origin [email protected]/haydenk/packageA.git
- Rewrite the repository to only the subdirectory or subdirectories you want in the new repository. With either master or develop branch or whatever branch you want to use.
git filter-branch --prune-empty --subdirectory-filter packageA -- develop
- I chose develop because I will create a release branch to push this to master or you can simply merge into master.
- Push the rewrites
git push --all
git push --tags