# HG changeset patch # User Patrick Mezard # Date 2010-10-24 16:39:02 # Node ID 042bc18dee4b3f72bafb078366d1a78b5c32a93f # Parent 4d622380ab3940b08f8ba9bb319582da5f2bb8e3 hgrc: document [subpaths] section diff --git a/doc/hgrc.5.txt b/doc/hgrc.5.txt --- a/doc/hgrc.5.txt +++ b/doc/hgrc.5.txt @@ -797,6 +797,23 @@ Controls generic server settings. checking that all new file revisions specified in manifests are present. Default is False. +``subpaths`` +"""""""""""" +Defines subrepositories source locations rewriting rules of the form:: + + = + +Where ``pattern`` is a regular expression matching the source and +``replacement`` is the replacement string used to rewrite it. Groups +can be matched in ``pattern`` and referenced in ``replacements``. For +instance:: + + http://server/(.*)-hg/ = http://hg.server/\1/ + +rewrites ``http://server/foo-hg/`` into ``http://hg.server/foo/``. + +All patterns are applied in definition order. + ``trusted`` """""""""""