Reputation: 111616
With git svn clone
I can work on a subversion repository using git. Is there a similar way to work on Mercurial (hg) repositories?
Upvotes: 19
Views: 7079
Reputation: 1401
If it was the other case, I mean if you need a git->hg conversion you can use mercurial's Convert extension. But for your question git-hg should do fine.
Upvotes: 0
Reputation: 4812
The Mercurial extension hg-git
is another way to go in the Hg->Git direction. If you just want to go in that direction, so far as I can see, it and git-hg
both work well. More details here.
Upvotes: 3