I have a private GitHub repo (which I cannot here) clone locally. I want to split a subfolder in this repo into a new subtree repository. I follow these instructions Using Git subtrees to split the repository (under Splitting the code into your own repository ).
My special team:
> git subtree split -P .\plugins\rg-feed-client -b rg-feed-client
however, it fails with the exact error message with the error "assertion failed", which looks like this:
1/ 26 (0)2/ 26 (1)assertion failed: [ plugins/rg-feed-client = .\plugins\rg-fee 3/ 26 (2)assertion failed: [ plugins/rg-feed-client = .\plugins\rg-feed-client ] ... 26/ 26 (25)assertion failed: [ plugins/rg-feed-client = .\plugins\rg-feed-client ]
If I try any other subfolder, the exact same thing will happen. I donβt know what could be wrong here ... HELP!
My repo has 2 remotes: origin and remote access for the existing subtree, which I added to my repo.
source share