Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've already tried hg2git through fast-export and I've already tried hg-git.

Both with no success. hg2git actually worked, but I had to ask a friend who runs a Unix machine to do it. And that messed up all the linefeeds throughout the files.

hg-git simply failed with some libzip compression error.

Has anyone had any success converting a hg repo to git on Windows?

To be clear, I don't care about interop. I want to port the whole repo from hg to git, taking the history with me. I don't need to push changes back and forth - only convert once.

Thanks in advance!

share|improve this question
can't the line feeds be fixed afterwards? – tonfa Sep 7 '09 at 14:06
Would be possible. But it can't be the right solution to have to send off the repo to someone using Unix to convert it. There must be some way on Windows. – Tigraine Sep 7 '09 at 22:54
@Joschua .. Yes I gave up after some time trying this on Windows and ran the conversion in my Linux VM – Tigraine Jul 26 '11 at 7:44

6 Answers

up vote 29 down vote accepted

Did the following on my Mac to successfully export a Mercurial repo to Git (with full branches):

mkdir myrepo; cd myrepo;
git clone git://repo.or.cz/fast-export.git .
rm -rf .git .gitignore
git init
./hg-fast-export.sh -r ../path/to/local/hg/repo
git clean -f # remove fast-export files
share|improve this answer
3  
This works only for Mercurial 2.2. If you have Mercurial 2.3, then try installing an older Python package, e.g. pip install mercurial==2.2, otherwise you get ImportError: cannot import name repo – Andrei Aug 20 '12 at 10:05
Thanks, this was exactly what I needed. For me this worked, hg v2.0.2, git v1.7.9.5, python v2.7.3 – mikelong Nov 16 '12 at 2:16
This worked for me on OSX using Mercurial 2.4+20121105 and git 1.7.10.2. Also, I cloned from https://github.com/frej/fast-export rather than the repo above. – ben.snape Apr 8 at 9:37

Have you tried tailor? It can pretty much convert anything to anything, as VCS go, and is even able to do it incrementally (that is, you convert once, then add new commits from the source to the target, without reconverting from scratch). You may not need it now, but it still is a nice feature.

share|improve this answer

If you're really only looking to do it this once you can use hg export like this:

hg export 0:tip -o all-changesets-in-one.patch

or if git prefers only one patch per file you can create one per changeset like this:

hg export 0:tip -o changeset-%r.patch

presumably git apply can take one or the other of those formats.

share|improve this answer
Thanks, but unfortunately I didn't find a way to make git apply those patches and preserve the commit message. – Tigraine Sep 10 '09 at 22:34
Really? Managing patches received by email is one of the things git is supposed to do well, and mercurial uses the git diff format, so I'd think with minimal massaging you could get the emailed patches applied. – Ry4an Sep 11 '09 at 20:51
I also have to admit that I didn't really try all that hard. It kept reporting a whitespace error in the file. Seems like "hg export --diff" isn't the same patch format after all.. – Tigraine Sep 12 '09 at 17:26
1  
Ry4an, thanks. Works like charm :) – Nils Jan 21 at 7:19

Here are all the pieces put together for a migration on Windows.

Prerequisites

  • Git
  • Mercurial or TortoiseHg
  • Python 2.7 (3.x won't work)

During install, allow binding to .sh files.
Ensure that all tools are available in the PATH environment variable.

Migration

  1. Open cmd.exe
  2. mkdir c:\git_work
  3. cd c:\git_work
  4. git clone http://repo.or.cz/r/fast-export.git
    This creates folder: c:\git_work\fast-export\
  5. Now you need mercurial libs for python. Either get them from here or do the following steps.
    Edit c:\git_work\fast-export\hg-fast-export.py:

    import sys # move this line up here
    # Add a new line that imports [mercurial libraries][2] from this zip:
    sys.path.append(r'C:\Program Files\TortoiseHg\library.zip')
    # ...above the old line:
    from mercurial import node
    
  6. mkdir MyNewGitRepo

  7. Copy content of fast-export to MyNewGitRepo, ignore .git*
  8. hg-fast-import.sh -r c:\Path\To\MyOldHgRepo
  9. If this fails with "Error: repository has at least one unnamed head..." call the last line with parameter: --force
  10. Remove the migration scripts:

    git clean -n # see what would happen
    git clean -f # delete migration files
    
share|improve this answer

There doesn't seem to be any reason you can't run hg2git on windows. It's python which has a windows port. Just make sure the proper libraries are there and run it on the window box.

share|improve this answer
No unfortunately not. I tried running the py scripts directly and I couldn't invoke them due to not being able to execute .sh on Win.. And I really don't want to install cygwin for this. – Tigraine Sep 9 '09 at 9:37

If anyone is using Homebrew on OS X and wants to know the minor tweaks to get it to work properly please see the article here: http://www.chrisc.cc/convert-mercurial-to-git-with-homebrew-package-management/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.