view DESIGN.txt @ 1144:c9ba526e82d6 default tip master

Added signature for changeset c651bb6fcf33
author Kevin Bullock <kbullock@ringworld.org>
date Sun, 14 Oct 2018 21:43:45 -0500
parents 1ec00e2805fb
children
line wrap: on
line source

Hg-Git Plugin Design Notes
==========================

This plugin is designed to allow you to push to a Git server over the Git protocol and to pull from a Git based project.  All data is stored in Hg native format with a mapping table.  People collaborating in Git should not  even be able to tell that you're using Hg to collaborate on their project (except for the '--HG--' section added to commit message). 

Nothing should need to be kept in the Git format - you should be able to run 'hg gclear' at any time to wipe out the Git directory and everything can be rebuilt losslessly from the existing Hg data - it is a cache only.

We are using the Dulwich library, which I've modified quite a bit - I'll have to get these changes back upstream at some point.

I've been adding 'TODO' comments all over the place where I only partially implemented something so I could get the entire first draft of functionality completed.  The TODO areas should be mostly edge cases (executable bits, file rename info, tags, submodules, etc).

Lossless Two Way
================

We need to store data that Git records that Merc does not in a git/extra_data file.  This would be parents over two and committer information (author will be mapped to Hg committer).  This way two Hg developers can collaborate without the Git transport messing up the local commits.

Each Git commit should be reproducible as a Merc ID and vice versa on any system without losing data (ie changing the SHA).

Branch Translation Policy
=========================

Branches in Hg and Git are pretty different.  This is meant to provide a clear policy on how one is converted to the other.

* Without Bookmarks: *

If you don't have bookmarks enabled, Git simply maps your 'tip' to the 'master' branch of the repository you're pushing to, since that is the most commonly used default branch name.  Actually, pulling will map whatever the server points to as HEAD, but when pushing it will assume 'master' is your tip.

	$ hg gpush origin        # will push tip to remote 'master'
	$ hg gpush origin master # same as above
	$ hg gpush origin --all  # same as above

If the remote server has divergent branches (branches with commits not reachable from HEAD) it will basically ignore them, not convert them into Hg changesets.  It will tell you this (and why) when fetched.

Conversely, on pushing, Hg named branches are ignored if they are not reachable from traversing the parents of tip. (SC: is this best?)

* With Bookmarks: *

If you have bookmarks enabled, it will treat your bookmarks like Git branches and will only push up references if you specify them.

	hg gpush origin        # will error, you have to specify a branch
	hg gpush origin master # pushes the master branch
	hg gpush origin --all  # pushes all local branches

If a fetch gets branches, it _will_ import them and will create bookmarks that point to them, even if they have no common ancestors with the mainline (HEAD).

* Other points *

If you do not specify a remote name, it will assume 'origin'.  This is helpful if you do not have bookmarks enabled as it will push tip automatically.  If you have bookmarks enabled this is not helpful because you have to specify a branch name after.

Eventually, I would like to setup tracking branch refspecs much like Git - say 'this local branch pushes and pulls to/from this remote and branch', but that will be one of the last things done.

Testing Hg-Git
==============

Tests are implemented in the Mercurial-standard way of small shell scripts.
The scripts are located in the tests directory, and to run them you should
change to that directory and then run tests/run-tests.py from the Mercurial
sources. For example, if you have a copy of the Mercurial source code at
/Stuff/hg-crew, you would do something like this:

cd tests ; /Stuff/hg-crew/tests/run-tests.py

And you should see output like this:
.
# Ran 1 tests, 0 skipped, 0 failed.