I would like to manage two separate repository to assemble a project. Repo A contains the platform, repo B contains plugins I'm developing. Something like this:
- files repo A
-app
-src
-files repo B
-...
I would like to manage repo B git inside the installation platform, but the commands
cd src
git remote -v
give me the origin branch of repository A. Is possible to nest two different repository without using submodules? My development repo is B, and A is a reference platform repo that I want to manage separately.