vote up 5 vote down star
1

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?

flag

73% accept rate
If you need to go the other direction: stackoverflow.com/questions/491554/… – Gorgapor Dec 15 at 15:26
You come across as very cranky. – Ry4an Dec 16 at 4:46

4 Answers

vote up 10 vote down check

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|flag
don't forget to run easy_install hg-git first – Gorgapor Dec 15 at 15:32
Not exactly what I wanted, but still doable. Thanks. – Hugo S Ferreira Dec 18 at 16:38
vote up 2 vote down

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

link|flag
2  
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 at 15:36
vote up 2 vote down

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|flag
vote up 1 vote down

Since hg-git is a two-way bridge, it will also allow you to push changesets from Git to Mercurial. I have also not tried the extension, but as far as I know it is the only option for Mercurial <-> Git interoperability.

link|flag

Your Answer

Get an OpenID
or

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