INSTRUCTIONS
- Install Cygwin with python, hg and git
- Install fast-export
You can try installing directly from the fast-export repository by issuing this command in the Cygwin console:git clone git://repo.or.cz/fast-export.git
If your firewall doesn't like that command and responds with:
Cloning into fast-export...
repo.or.cz[0: 195.113.20.142]: errno=Connection timed out
fatal: unable to connect a socket (Connection timed out)
you can download an archive from here:
http://repo.or.cz/w/fast-export.git/shortlog/refs/heads/master/
Also, I was getting the following error:
IOError: [Errno 32] Broken pipe
and was able to get around it by downloading an older version:
fast-export-c8a45848968a21c3021489a6ba3ab1ffe5ef2a90.tar.gz - Execute these commands in cygwin to create a working directory and initialize a new git repository:
mkdir conversion
cd conversion - In Windows explorer, copy the fast-export folder from inside the archive into:
C:\cygwin\home\<USERNAME>\conversion - Also, copy your existing mercurial repository, we'll call it convert.hg, into the same directory
- Execute the following commands:
mkdir convert.git
cd convert.git
git init
~/conversion/fast-export/hg-fast-export.sh -r ~/conversion/convert.hg
ADDITIONAL NOTES
The directory structure created for this example was:
~/conversion
/convert.git # A new empty git repository
/convert.hg # Your existing mercurial repository
/fast-export # The fast-export directory we downloaded
~/conversion
/convert.git # A new empty git repository
/convert.hg # Your existing mercurial repository
/fast-export # The fast-export directory we downloaded
REFERENCES
I try not to comvert anything.
ReplyDeleteSpelling error, corrected it, thanks!
ReplyDeleteThanks, works like a charm!
ReplyDelete