Git interoperability with a Mercurial Repository - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T13:33:42Zhttp://stackoverflow.com/feeds/question/883452http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/883452/git-interoperability-with-a-mercurial-repository3Git interoperability with a Mercurial RepositoryHugo S Ferreira2009-05-19T15:26:51Z2009-07-06T21:06:31Z
<p>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...</p>
<p>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.</p>
<p>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.</p>
<p>Any of you guys know a simple solution for this?</p>
http://stackoverflow.com/questions/883452/git-interoperability-with-a-mercurial-repository/883487#8834873Answer by Magnus Skog for Git interoperability with a Mercurial RepositoryMagnus Skog2009-05-19T15:32:52Z2009-05-19T15:32:52Z<p><a href="http://hg-git.github.com/" rel="nofollow">Hg-Git Mercurial Plugin</a>. Haven't tried it myself, but might be worth checking out.</p>
http://stackoverflow.com/questions/883452/git-interoperability-with-a-mercurial-repository/883516#8835163Answer by sykora for Git interoperability with a Mercurial Repositorysykora2009-05-19T15:39:10Z2009-05-19T15:39:10Z<p>You can try <code>hg2git</code>, which is python script and is part of fast-export, which you can find at <a href="http://repo.or.cz/w/fast-export.git" rel="nofollow">http://repo.or.cz/w/fast-export.git</a> .</p>
<p>You'll need to have mercurial installed though.</p>
http://stackoverflow.com/questions/883452/git-interoperability-with-a-mercurial-repository/890378#8903781Answer by Martin Geisler for Git interoperability with a Mercurial RepositoryMartin Geisler2009-05-20T21:34:06Z2009-05-20T21:34:06Z<p>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.</p>
http://stackoverflow.com/questions/883452/git-interoperability-with-a-mercurial-repository/1089221#10892218Answer by Abderrahim Kitouni for Git interoperability with a Mercurial RepositoryAbderrahim Kitouni2009-07-06T21:06:31Z2009-07-06T21:06:31Z<p>You should be able to use hg-git.</p>
<pre><code>hg clone <hg repository>
</code></pre>
<p>edit .hg/hgrc and add :</p>
<pre><code>[git]
intree = true
</code></pre>
<p>and then :</p>
<pre><code>hg gexport
</code></pre>
<p>and you can use the resulting directory as a git clone. pulling from mercurial would be :</p>
<pre><code>hg pull
hg gexport
</code></pre>
<p>and pushing to mercurial :</p>
<pre><code>hg gimport
hg push
</code></pre>
<p>(Yes, you need to use hg with this workflow but your hacking will be all in git)</p>
<p>P.S. If you have a problem with this workflow, please file a bug.</p>