lite
lite copied to clipboard
Adding and then re-splitting
When I create a monorepo by combining multiple repositories using git subtree add --prefix=..
and then re-split the prefix using splish-lite --prefix=
it creates only one commit in the branch, which is the merge commit created by git subtree add --prefix=
and all other history is lost. When I use git subtree split --prefix=
that preserves the history. Am I getting something wrong? Maybe it's because git subtree add
creates a merge commit and splitsh-lite
ignores it?
Have you found a workaround yet? I've been struggling with this issue as well.