Open
Description
I'm working on a php project, I have a core, and inside the core, in various nested directories, plugins. I'd like to have one git branch for the core, and one for each plugin.
If I try to clone them with git subrepo into nested subdirectories, strange things happen:
git subrepo clone /path/to/core core
git subrepo clone /path/to/plugin core/plugin
git subrepo status
This now shows one subrepo, core (although the actual data is checked out and present).
How do I properly nest subrepos? I don't want to include plugin in the core repo, but I want one "working" repo that has all the plugins inside core in various places.
Thanks for any help,
Peter