Mercurial > hg
view tests/test-bookmarks.out @ 11775:a8614c5a5e9a
subrepos: support remapping of .hgsub source paths
Given a .hgsub file containing
lib/libfoo = http://server/libfoo
the 'lib/libfoo' subrepo will be cloned from 'http://server/libfoo'.
This changeset introduces a remapping mechanism whereby the source
paths (the right-hand sides) in the .hgsub file can be remapped. This
subpaths section
[subpaths]
http://server = /local
will result in the 'lib/libfoo' subrepo being cloned from
'/local/libfoo' instead of from 'http://server/libfoo'.
The patterns (left-hand sides) are really regular expressions and the
replacement strings (right-hand sides) can refer to matched groups
using normal backreferences. This can be used for more complicated
replacements such as
[subpaths]
http://server/(.*)-hg/ = http://hg.server/\1/
which replaces 'http://server/foo-hg/' with 'http://hg.server/foo/'.
All patterns are applied in the order by which they are listed in the
config files.
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Thu, 15 Jul 2010 18:10:05 +0200 |
parents | 18c47562d331 |
children |
line wrap: on
line source
% no bookmarks no bookmarks set % bookmark rev -1 % list bookmarks * X -1:000000000000 % list bookmarks with color [0;32m * X -1:000000000000[0m % bookmark X moved to rev 0 * X 0:f7b1eb17ad24 % look up bookmark changeset: 0:f7b1eb17ad24 tag: X tag: tip user: test date: Thu Jan 01 00:00:00 1970 +0000 summary: 0 % second bookmark for rev 0 % bookmark rev -1 again % list bookmarks * X2 0:f7b1eb17ad24 * X 0:f7b1eb17ad24 Y -1:000000000000 % bookmarks X and X2 moved to rev 1, Y at rev -1 * X2 1:925d80f479bb * X 1:925d80f479bb Y -1:000000000000 % bookmark rev 0 again % bookmarks X and X2 moved to rev 2, Y at rev -1, Z at rev 0 * X2 2:0316ce92851d * X 2:0316ce92851d Z 0:f7b1eb17ad24 Y -1:000000000000 % rename nonexistent bookmark abort: a bookmark of this name does not exist % rename to existent bookmark abort: a bookmark of the same name already exists % force rename to existent bookmark % list bookmarks * X2 2:0316ce92851d * Y 2:0316ce92851d Z 0:f7b1eb17ad24 % rename without new name abort: new bookmark name required % delete without name abort: bookmark name required % delete nonexistent bookmark abort: a bookmark of this name does not exist % bookmark name with spaces should be stripped % list bookmarks * X2 2:0316ce92851d * Y 2:0316ce92851d Z 0:f7b1eb17ad24 * x y 2:0316ce92851d % look up stripped bookmark name changeset: 2:0316ce92851d tag: X2 tag: Y tag: tip tag: x y user: test date: Thu Jan 01 00:00:00 1970 +0000 summary: 2 % reject bookmark name with newline abort: bookmark name cannot contain newlines % bookmark with existing name abort: a bookmark of the same name already exists % force bookmark with existing name % list bookmarks * X2 2:0316ce92851d * Y 2:0316ce92851d * Z 2:0316ce92851d * x y 2:0316ce92851d % revision but no bookmark name abort: bookmark name required % bookmark name with whitespace only abort: bookmark names cannot consist entirely of whitespace