Git interoperability with a Mercurial Repository - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T13:33:42Z http://stackoverflow.com/feeds/question/883452 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/883452/git-interoperability-with-a-mercurial-repository 3 Git interoperability with a Mercurial Repository Hugo S Ferreira 2009-05-19T15:26:51Z 2009-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#883487 3 Answer by Magnus Skog for Git interoperability with a Mercurial Repository Magnus Skog 2009-05-19T15:32:52Z 2009-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#883516 3 Answer by sykora for Git interoperability with a Mercurial Repository sykora 2009-05-19T15:39:10Z 2009-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#890378 1 Answer by Martin Geisler for Git interoperability with a Mercurial Repository Martin Geisler 2009-05-20T21:34:06Z 2009-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 &lt;-> Git interoperability.</p> http://stackoverflow.com/questions/883452/git-interoperability-with-a-mercurial-repository/1089221#1089221 8 Answer by Abderrahim Kitouni for Git interoperability with a Mercurial Repository Abderrahim Kitouni 2009-07-06T21:06:31Z 2009-07-06T21:06:31Z <p>You should be able to use hg-git.</p> <pre><code>hg clone &lt;hg repository&gt; </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>