I've been developing a java application using git as source code repository. I'd like to share the project with other java developers and hg seems to be most used by them.

My question is how do I convert a git repository to hg?

If I tried googling "convert git to hg" and every search hit is about converting from git to hg. I'm also using TortoiseHg.

link|improve this question

14  
If you need to convert from mercurial to git instead: stackoverflow.com/questions/883452/… – Christian Oudard Dec 15 '09 at 15:27
feedback

7 Answers

up vote 33 down vote accepted

The hg convert utility isn't on by default after installation. In order to set it as such add the following to your .hgrc file.

[extensions]
hgext.convert=

If you're using TortoiseHg on Windows then this file resides in your home directory as mercurial.ini. After this setting change you will be able to use the hg convert utility.

link|improve this answer
feedback

By using the Mercurial Convert extension and typing a

hg convert --datesort src dst

(even though it can lead to some issues...)

link|improve this answer
Thank you for the edit, Pat. – VonC Jan 29 '09 at 15:51
feedback

Distributed revision control with Mercurial states:

The revision control tools supported by convert are as follows:

  • Subversion
  • CVS
  • Git
  • Darcs

So maybe you don’t need any additional tool?

link|improve this answer
Unfortunately "hg convert" is not available in tortoisehg – Spoike Jan 29 '09 at 13:39
feedback

The convert extension may work for you, but if it doesn't, you might want to check out tailor which is a general purpose tool for converting among the various distributed SCMs.

link|improve this answer
feedback

You may want to look at the http://hg-git.github.com/ utility: a Git plugin for Mercurial

This plugin is originally developped by the guys of GitHub, and allows the convert from git<->mercurial losslessly. In theory, you could even be able to clone the hg repository.

link|improve this answer
This is a better solution than converting the repository. It would be a better answer too, if it had more detail. One line answers are next to useless. – naught101 2 days ago
1  
@naught101, thanks for the suggestion, I've added some more info here to read directly. – vdboor 2 days ago
feedback

You could just not convert it at all. Just use the Hg-Git plugin! No one will know the difference.

link|improve this answer
feedback

use this (the hg convert utility)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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