Possible Duplicate:
Converting a Mercurial (hg) repository to Git on Windows (7)
There's a Mercurial repository that I want to convert to Git, which is what we use at work. I have Mercurial (for Windows) installed, and I've already cloned the Hg repository locally. I'm stuck on trying to convert it.
Most of the pages I've found assume that I'm using Unix/Linux, and the most common recommendation, hg-fast-export, seems to work only in those OSes. I do have access to the Git Bash. I've gotten as far as this (line-wrapped for easier reading):
$ ~/codeingit/fast-export/hg-fast-export.sh -r
~/codeinmercurial/projectiwanttoconvert
In response, I get:
ImportError: No module named mercurial
I've read a number of web pages about this which, again, assume that I'm using Unix/Linux and that I have Mercurial installed for that.
Is there anyone who's successfully converted an Hg repository to Git on Windows, and can write a step-by-step guide to doing it?