Let's say I have Repo A, which consists of the following structure:
Repo A:
├── content/
│ └── themes/
│ ├── myproject/
│ └── otherproject/
└── otherstuff/
myproject/ doesn't rely on otherproject/ or otherstuff/, so I used git filter-branch to set up in Repo B with the following structure:
Repo B:
└── myproject/
I've made some commits to Repo B, but now, I would like to merge Repo B's myproject/ into Repo A's content/themes/myproject/, keeping Repo A's history, as well bringing over the history and commit messages I made into Repo B since I branched off
Is there a way for me to achieve this?