I am switching to git from Mercurial and have been using hg-fast-export successfully. Now I have a tricky situation. I have a project which is using separate hg repositories per-branch and I want to convert these to a single git repository with 'proper' branches, keeping my hg changesets if possible.
So the current structure looks like this - each folder is an hg repository:
Project-v1.0
Project-v2.0
Project-v3.0
I want to end up with a single git repository called 'Project' that contains 3 branches, v1.0, v2.0 and v3.0.
Is this possible?