Mercurial > hg
changeset 12827:042bc18dee4b stable
hgrc: document [subpaths] section
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Sun, 24 Oct 2010 18:39:02 +0200 |
parents | 4d622380ab39 |
children | af1006d2f970 |
files | doc/hgrc.5.txt |
diffstat | 1 files changed, 17 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/doc/hgrc.5.txt Sun Oct 24 18:37:59 2010 +0200 +++ b/doc/hgrc.5.txt Sun Oct 24 18:39:02 2010 +0200 @@ -797,6 +797,23 @@ checking that all new file revisions specified in manifests are present. Default is False. +``subpaths`` +"""""""""""" +Defines subrepositories source locations rewriting rules of the form:: + + <pattern> = <replacement> + +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`` """""""""""