I have a question regarding git repository migrations.
Currently, I am working on a multi-repository project, namely project-1 and project-2, each with its own git repository.
Now, I would like to create a new project called project and move project-1 and project-2 inside it while preserving the history of each project. Is this possible?
I am aware of git-submodules and git in git, but in our case, we need to merge these projects. Each module (project-1, project-2, etc.) is part of the same product, and we plan to merge them in the near future. It would be helpful if we could retain the entire history.
Thank you.
I tried git-submodules but its not the same, since we need to maintain the submodule workflow.
I found a related question but I think it's not going to work for my case.
Moving Git repository content to another repository preserving history
