hg-git Extension

This extension is not distributed with Mercurial.

Author: Scott Chacon, Augie Fackler, Abderrahim Kitouni, and Sverre Rabbelier

Download site: http://bitbucket.org/abderrahim/hg-git

Overview

This extension adds the ability to work on a Git repository from Mercurial. It also allows using a Git server as a collaboration point for a team with developers using both Git and Mercurial. At the same time, it can also be used to interact with a hg repository using git.

It can convert commits/changesets losslessly from one system to another, so you can push from a Mercurial repository and another Mercurial client can pull it and their changeset node ids will be identical - Mercurial data does not get lost in translation. It is intended that Mercurial users may wish to use this to collaborate even if no Git users are involved in the project, and it may even provide some advantages if you're using Bookmarks (see below).

Commands

You can clone a Git repository as you would clone a mercurial repository, for example :

hg clone git://github.com/schacon/hg-git.git

will clone the git mirror of the hg-git repository in a directory named 'hg-git.git'.

TODO: document the difference between ssh://host/path and host:path git urls and how they map to hg.

If you want to clone a repository via ssh, you can do so using a git+ssh:// protocol prefix :

hg clone git+ssh://git@github.com/schacon/hg-git.git

This will also create a bookmark for each git branch, and add local tags default/<branch name> for each branch. This is similar to origin/<branch name> in git.

When you pull from a git repository in the [paths] section of hgrc, it will "fast-forward" the bookmarks if the branches haven't diverged. It will also create local tags as above.

When pushing to git, the following is done to determine what's pushed :

The bookmarks extension is not necessary, one can work using solely local tags, but it's more convenient to use it.

Using hg-git to interact with a hg repository with git

You can create a local .git repository like this:

Editr the .hg/hgrc (or your ~/.hgrc if you want to make this the default):

[git]
intree=1

Then do the following from in the hg repository:

hg gexport

This will create a .git repository in the working directory (alongside the .hg directory) that you can interact with like any regular git repository. If you have made commits in the git repository and want to convert them to hg commits, first make sure the changes you want are on the master branch, then do:

hg gimport

This will put your changes on top of the current hg tip.

Optionally you can change your hgrc to include an exportbranch statement:

[git]
intree=1
exportbranch=refs/heads/from-hg

This will cause 'hg gexport' to update the 'from-hg' branch, instead of the master branch, so that your changes will not be lost even if you work on the master branch.

TODO

If you want to help with the development of hg-git, here are some things you can help with :

Dependencies

This plugin is implemented entirely in Python - there are no Git binary dependencies, you do not need to have Git installed on your system. The only dependencies are Dulwich (there is currently a modified version in the repo, but it'll be soon removed) and Mercurial (it should work with Mercurial versions 1.1-1.3).

Configuration

Configure your .hgrc to enable the extension by adding following lines:

[extensions]
hgext.bookmarks =
git = /path/to/hg-git


CategoryExtensionsByOthers