This package is used for splitting the Embedded Artistry monorepo and we share it with our community as it is. We are willing to consider issues and pull requests, but this project's primary purpose is to serve our own use case.
Tools for building and splitting monolithic repository from existing packages.
We created these scripts because we couldn't find a tool that would keep the git history of subpackages unchanged.
You may need to update your git
(tested on 2.16.1
).
This repository is maintained in embeddedartistry/monorepo.
Primary differences from the original shopsys/monorepo-tools:
- Uses git filter-repo, resulting in drastically improved performance
- Supports git-lfs files
- Works with
main
branch by default - Provides an option for overriding which branch will be merged in or split out
First download this repository so you can use the tools (eg. into ~/monorepo-tools
).
git clone https://github.com/embeddedartistry/monorepo-tools ~/monorepo-tools
You have to create a new git repository for your monorepo and add all your existing packages as remotes. You can add as many remotes as you want.
In this example we will prepare 3 packages from github for merging into monorepo.
git init
git remote add main-repository http://github.com/vendor/main-repository.git
git remote add package-alpha http://github.com/vendor/alpha.git
git remote add package-beta http://github.com/vendor/beta.git
git fetch --all --no-tags
Then you can build your monorepo using monorepo_build.sh
.
Just list the names of all your previously added remotes as arguments.
Optionally you can specify a directory where the repository will be located by providing <remote-name>:<subdirectory>
, otherwise remote name will be used.
The command will rewrite history of all mentioned repositories as if they were developed in separate subdirectories.
Only branches main
will be merged together, other branches will be kept only from first package to avoid possible branch name conflicts.
~/monorepo-tools/monorepo_build.sh \
main-repository package-alpha:packages/alpha package-beta:packages/beta
This may take a while, depending on the size of your repositories.
Now your main
branch should contain all packages in separate directories. For our example it would mean:
- main-repository/ - contains repository vendor/main-repository
- packages/
- alpha/ - contains repository vendor/alpha
- beta/ - contains repository vendor/beta
You should develop all your packages in this repository from now on.
When you made your changes and would like to update the original repositories use monorepo_split.sh
with the same arguments as before.
~/monorepo-tools/monorepo_split.sh \
main-repository package-alpha:packages/alpha package-beta:packages/beta
This will push all relevant changes into all of your remotes.
It will split and push your main
branch along with all tags you added in this repository.
Other branches are not pushed.
It may again take a while, depending on the size of your monorepo.
Note:
The commits in the split repositories should be identical to those from the original repo, keeping the git history intact.
Thus, if you have checked out the original main
previously, you should be able to fast-forward to the new version after splitting.
The only known exception is a signed commit (note that GitHub signs commits made via its web UI by default).
If you have signed commits in your original repository, the split commits will NOT be signed.
This will prevent monorepo_split.sh
from pushing the unsigned commits to the remote.
To overcome this you can add the --force
flag to the git push
calls in the script, but it may cause unforeseen consequences if you're not sure what you're doing.
When you have the monorepo, you may find a reason for adding a new package after some time you already use the monorepo.
In this case, don't use monorepo_build.sh
, but do following steps:
- Create a new repository, for example, vendor/gamma
- Add remote into the monorepo
git remote add package-gamma http://github.com/vendor/gamma.git
- Create a new directory in the monorepo packages/gamma
- Add the code and commit it
- Use split tool with the new package
~/monorepo-tools/monorepo_split.sh \ main-repository package-alpha:packages/alpha package-beta:packages/beta package-gamma:packages/gamma
This is just a short description and usage of all the tools in the package. For detailed information go to the scripts themselves and read the comments.
Build monorepo from specified remotes. The remotes must be already added to your repository and fetched.
Usage: monorepo_build.sh <remote-name>[:<subdirectory>][:<branch>] <remote-name>[:<subdirectory>][:<branch>] ...
Split monorepo built by monorepo_build.sh
and push all main
branches along with all tags into specified remotes.
Usage: monorepo_split.sh <remote-name>[:<subdirectory>][:<branch>] <remote-name>[:<subdirectory>][:<branch>] ...
Add repositories to an existing monorepo from specified remotes. The remotes must be already added to your repository and fetched. Only main branch will be added from each repo.
Usage: monorepo_add.sh <remote-name>[:<subdirectory>][:<branch>] <remote-name>[:<subdirectory>][:<branch>] ...
Rewrite git history (even tags) so that all filepaths are in a specific subdirectory.
Usage: rewrite_history_into.sh <subdirectory> [<refs to keep>]
Rewrite git history (even tags) so that only commits that made changes in a subdirectory are kept and rewrite all filepaths as if it was root.
Usage: rewrite_history_from.sh <subdirectory> [<refs to export]
Restore original git history after rewrite.
Usage: original_refs_restore.sh
Wipe original git history after rewrite.
Usage: original_refs_wipe.sh
Delete all local branches and create all non-remote-tracking branches of a specified remote.
Usage: load_branches_from_remote.sh <remote-name>
Backup tag refs into refs/original-tags/
Usage: tag_refs_backup.sh
Move tag refs from refs/original-tags/
into refs/tags/
Usage: tag_refs_restore.sh
This repository is READ-ONLY.
You can report issues here, but it is better to report issues and/or send pull requests in the main embeddedartistry/monorepo repository.