Differences between revisions 9 and 10
Revision 9 as of 2007-08-15 20:32:23
Size: 2685
Editor: BrendanCully
Comment: Add mercurial as a supported source
Revision 10 as of 2007-08-27 23:24:40
Size: 3395
Editor: BrendanCully
Comment: Import --filemap docs
Deletions are marked like this. Additions are marked like this.
Line 38: Line 38:
Convert can also filter or rename files during conversion, when you supply it a mapping via the --filemap option.
The filemap is a file that allows filtering and remapping of files and directories. Comment lines start with `#`. Each line can contain one of the following directives:

 * `include path/to/file`
 * `exclude path/to/file`
 * `rename from/file to/file`

The `include` directive causes a file, or all files under a directory, to be included in the destination repository. The `exclude` directive causes files or directories to be omitted. The `rename` directive renames a file or directory. To rename from a subdirectory into the root of the repository, use `.` as the path to rename to.

Convert extension

This extension is distributed with Mercurial.

Author: several people

1. Overview

The convert extension converts repositories from other SCMs into mercurial repositories. It currently supports the following repository types:

  • CVS
  • Subversion
  • git
  • Mercurial

It supports branches and incremental or ongoing conversion, as well as some features for tidying up new repositories, such as pruning parts of the tree and rewriting author names.

2. Configuration

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

[extensions]
hgext.convert=

3. Usage

hg convert source [destination]

If destination is not provided, it will be created as source-hg.

Convert can optionally stop importing at a given revision, if the --rev option is provided. The argument should be given in terms the source understands (e.g. a revision number for subversion sources, or a hash for git sources).

Convert can also remap author names during conversion, if the --authors option is provided. The argument should be a simple text file maps each source commit author to a destination commit author. It is handy for source SCMs that use unix logins to identify authors (eg: CVS). One line per author mapping and the line format is:

srcauthor=whatever string you want

Convert can also filter or rename files during conversion, when you supply it a mapping via the --filemap option. The filemap is a file that allows filtering and remapping of files and directories. Comment lines start with #. Each line can contain one of the following directives:

  • include path/to/file

  • exclude path/to/file

  • rename from/file to/file

The include directive causes a file, or all files under a directory, to be included in the destination repository. The exclude directive causes files or directories to be omitted. The rename directive renames a file or directory. To rename from a subdirectory into the root of the repository, use . as the path to rename to.

Normally convert will import revisions in an order that produces the fewest jumps between branches in the commit log. If you want to make the revision order in the destination more closely match that of the parent, use the --datesort flag.

4. Converting from Subversion

Subversion's python bindings are a prerequisite. The converter works best with local repositories (file://...), so you may want to use svnsync to create one if your access method is remote (especially if it is via http). The source may be a URL or a path to a repository or working directory. The converter supports a few subversion-specific options:

svn.trunk
Relative path to the trunk (default: "trunk")
svn.branches
Relative path to tree of branches (default: "branches")

Set these under [convert] in a hgrc, or on the command line as follows:

hg convert --config convert.svn.trunk=wackoname [...]

5. Converting to Mercurial

The Mercurial back end supports the following configuration options:

hg.usebranchnames
Use named branches to record source branches (default: True)
hg.clonebranches
Create branches as clones of their parent branches. All branches will be created as subdirectories of the convert destination. (default: False)


CategoryExtension

ConvertExtension (last edited 2023-10-20 15:24:16 by Marvin Renich)