vote up 10 vote down star
3

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.

flag

If you need to convert from mercurial to git instead: stackoverflow.com/questions/883452/… – Gorgapor Dec 15 at 15:27

5 Answers

vote up 2 vote down

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

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

use this (the hg convert utility)

link|flag
vote up 6 vote down

By using the Mercurial Convert extension and typing a

hg convert --datesort src dst

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

link|flag
Thank you for the edit, Pat. – VonC Jan 29 at 15:51
vote up 2 vote down

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|flag
Unfortunately "hg convert" is not available in tortoisehg – Spoike Jan 29 at 13:39

Your Answer

Get an OpenID
or

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