tags:

views:

284

answers:

1

Hello is there a tool for git that allow to work with mercurial repositories

F.e. for svn there is a git-svn package, that allows to clone/commit/update from svn and work in a git way..

So is there some tool for mercurial for that ?

+4  A: 

See this related SO question: Git interoperability with a Mercurial Repository

It seems that hg2git is of interest. It is part of the git fast-export family of tools.

If you want hg to push/pull from a git repo, then consider the Hg-Git Mercurial Plugin.

Tim Henigan
`hg-git` is *very* nice, but its designed to allow Mercurial to be a client for Git. Doing it the other way around is possible, but it's slightly convoluted. As a Mercurial user I find it *very* handy though.
quark