From b57ad307402e5ec9c81e0e199921819f9dbe29df Mon Sep 17 00:00:00 2001 From: Rocco Rutte Date: Fri, 16 Mar 2007 18:19:08 +0000 Subject: [PATCH] Replace some references from hg2git to hg-fast-import Signed-off-by: Rocco Rutte --- hg-fast-export.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hg-fast-export.txt b/hg-fast-export.txt index fdd8b9f..2fdabab 100644 --- a/hg-fast-export.txt +++ b/hg-fast-export.txt @@ -1,4 +1,4 @@ -hg2git.(sh|py) - mercurial to git converter using git-fast-import +hg-fast-import.(sh|py) - mercurial to git converter using git-fast-import Legal ===== @@ -15,14 +15,14 @@ Using it is quite simple for a mercurial repository : mkdir repo-git # or whatever cd repo-git git init - hg2git.sh -r + hg-fast-import.sh -r Incremental imports to track hg repos is supported, too. Notes/Limitations ================= -hg2git supports multiple branches but only named branches with exaclty +hg-fast-import supports multiple branches but only named branches with exaclty one head each. Otherwise commits to the tip of these heads within branch will get flattened into merge commits. @@ -33,11 +33,11 @@ when importing a small number of changesets per incremental import). Design ====== -hg2git.py was designed in a way that doesn't require a 2-pass mechanism +hg-fast-import.py was designed in a way that doesn't require a 2-pass mechanism or any prior repository analysis: if just feeds what it finds into git-fast-import. This also implies that it heavily relies on strictly linear ordering of changesets from hg, i.e. its append-only storage -model so that changesets hg2git already saw never get modified. +model so that changesets hg-fast-import already saw never get modified. Todo ==== -- 2.11.4.GIT