Is there a way to move a repository, and all its tags, to be a subdirectory of another repository in an automated fashion?
For reasons, a project was split into multiple repositories. Now we see that wasn't such a hot idea and want to bring it back together again. Submodules were considered, but they really are one project and we need to move a lot of files between them.
Let's say we have repository A, B and C. And we want one project with each of them as a subdirectory:
project/
A/
B/
C/
That can be accomplished with git-filter-branch --tree-filter. Done, no problem. And it even does the branches correctly too, which was a pleasant surprise.
The trouble is, A, B and C have tags, and they all need to be converted, too.
Can this be automated?