I've been using git subtree split
to divide up one huge repository, imported to Git from another VCS, into smaller repositories.
$ git subtree split -P ./path/to/folder/ -b folder-only
This has been working and I've moved a couple of folders out into new repositories but attempts on their siblings, after running through all the available commits, have no branch created.
The final message is
"No new revisions were found"
I don't know if this is important or not but running with --debug
gives messages like the following
Processing commit: ca9d25944cf34bbe7aa356248a166ac1fb813f2a
parents: fc0e5a621ab871b8a11071eec321f4b40b8dcce0
newparents:
tree is:
Why has git subtree split
failed and what can I do about it?