I have a one git project with a file structure like this:
Project_A/files...
I have another git project with a file structure like this:
Project_B/
Project_A/files...
files...
Now I want to merge Project A into Project B and continue using Project B as the sole repository.
I tried using the subtree merge, but I got an error saying "Entry 'XXX' overlaps 'XXX'"
Is there a way to merge Project A into Project B and retain all of the commit histories?
Thanks in advance!