Using git to access mercurial repositories, without mercurial
If you've been following this blog, you know I've been working on a git remote helper that gives access to mercurial repositories, named git-cinnabar. So far, it has been using libraries from mercurial itself in order to talk to local or remote repositories.
That is, until today. The current master
branch now has experimental support for direct access to remote mercurial repositories, without mercurial.
2016-05-10 17:45:35+0900
Responses are currently closed, but you can trackback from your own site.
2016-05-11 20:14:23+0900
Sweet! It’s been good to see git-cinnabar steadily moving forwards. :)
2016-05-12 08:53:22+0900
Wanted to ask about the opposite way, so why not here:
Can someone on mercurial sanely pull a branch from someone working on a gecko-dev fork?
2016-05-13 09:37:14+0900
Axel: Not without modifying hg-git to allow it, if you’re thinking about doing that “directly” (mercurial talking to git).
Otherwise, you can with git-cinnabar, with some hassle (clone that gecko-dev based branch, graft your local clone of m-c, use git-cinnabar to push the gecko-dev based branch to your local clone of m-c)