I use GIT on a Mac. Enough said. I have the tools, I have the experience. And I want to continue to use it. No wars here...

The problem is always with interoperability. Most people use SVN, which is great for me. Git SVN works out of the box, and is a no frills solution. People can continue happily use SVN and I don't loose my workflow and neither my tools.

Now... Some guys come along with Mercurial. Fine for them: they have their reasons. But I can't find any GIT HG out-of-the-box. I don't want to switch to HG, but I still need to interoperate with their repository.

Any of you guys know a simple solution for this?

link|improve this question

5  
If you need to go the other direction: stackoverflow.com/questions/491554/… – Christian Oudard Dec 15 '09 at 15:26
1  
hg-git does work in both directions. – Derek Mahar Aug 12 '11 at 21:21
feedback

5 Answers

up vote 75 down vote accepted

You should be able to use hg-git.

hg clone <hg repository>

edit ~/.hgrc and add :

[extensions]
hgext.bookmarks =
hggit =

create a bookmark so you will have a master in git :

hg bookmark -r default master

edit .hg/hgrc in the repository and add :

[git]
intree = true

now you can create the git repository :

hg gexport

and you can use the resulting directory as a git clone. pulling from mercurial would be :

hg pull
hg gexport

and pushing to mercurial :

hg gimport
hg push

(Yes, you need to use hg with this workflow but your hacking will be all in git)

P.S. If you have a problem with this workflow, please file a bug.

link|improve this answer
2  
don't forget to run easy_install hg-git first – Christian Oudard Dec 15 '09 at 15:32
Not exactly what I wanted, but still doable. Thanks. – Hugo S Ferreira Dec 18 '09 at 16:38
Just an fyi, after running through this process once on a local hg repo (and doing something wrong) I wasn't able to clone the resulting repo using git. I had to "hg clone" the source hg repo, follow the steps on the new hg repo, and then git clone the new hg repo. – Rocky Burt Apr 12 '11 at 14:12
I get this when trying to issue a git status command $ git status fatal: This operation must be run in a work tree This is after I've issued an hg gexport in a freshly cloned hg repository. What is a possible work out to get around bare repositories? Update. Apparently, Rock Burt's suggestion works. Thank you – yesudeep Jul 25 '11 at 21:15
1  
@ThaDon I have the same problem. Apparently the git repo is created as .hg/git. The solution is to 'ln -s .hg/git .git'. – mb14 Nov 20 '11 at 22:21
show 6 more comments
feedback

You can try hg2git, which is python script and is part of fast-export, which you can find at http://repo.or.cz/w/fast-export.git .

You'll need to have mercurial installed though.

link|improve this answer
3  
This converted an hg repo into a git repo, thank you very much! – wizard Jun 20 '10 at 20:27
This script failed for me, but the original hg-fast-export worked fine – Andrei Sep 27 '11 at 14:01
feedback

Since hg-git is a two-way bridge, it will also allow you to push changesets from Git to Mercurial.

link|improve this answer
feedback

Have tried hggit. Works for me, since I have to cope the work of git'ers and hg'ers. Especially for reviews this is great.

A minor issue/warning on that topic:

I have tried to clone a stable linux kernel repository with hg. These repositories are maintained in git and typically have a large number of files in it.

It was very slow. Took me 2 days to fully clone and update a working copy.

link|improve this answer
It appears to be getting better --- my checkout has been running for about six hours, and it claims there's only another nine to go... – David Given May 23 at 23:07
I take that back. It's now been running for about 25 hours, and it still claims there's only another nine to go. Two days, you said? – David Given May 24 at 18:09
I experienced that - My first try didn't work at all - I presume it was some bug, but never analyzed that any further, on my second try - with an updated hg-git it took almost 50 hours to complete on my Mac Book Pro (2.66GHz, 8 Gig RAM) – Wizz May 25 at 9:12
39 hours now, so only 11 to go! Quad core AMD Phenom. It is making progress, which is why I'm letting it run (the hg progress bar extension is a must-have). It's alternating between pegging one CPU and using no CPU at all and doing lots of disk access. – David Given May 25 at 9:32
feedback

Hg-Git Mercurial Plugin. Haven't tried it myself, but might be worth checking out.

link|improve this answer
5  
This is a plugin which allows mercurial users to push and pull from git repos, not the other way around, which is what the OP wants. – sykora May 19 '09 at 15:36
feedback

Your Answer

 
or
required, but never shown

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