Mercurial > hg-stable
view tests/test-subrepo-paths.t @ 13466:f2295f7cd468 stable
subrepo: only attempt pulling from git's origin
git fetch does not accept repository URLs as arguments, and the intended
logic of this code was not actually doing anything.
author | Eric Eisner <ede@mit.edu> |
---|---|
date | Wed, 23 Feb 2011 10:59:36 -0500 |
parents | 6cc4b14fb76b |
children | e720b3324e35 |
line wrap: on
line source
$ hg init outer $ cd outer hg debugsub with no remapping $ echo 'sub = http://example.net/libfoo' > .hgsub $ hg add .hgsub $ hg debugsub path sub source http://example.net/libfoo revision hg debugsub with remapping $ echo '[subpaths]' > .hg/hgrc $ printf 'http://example.net/lib(.*) = C:\\libs\\\\1-lib\\\n' >> .hg/hgrc $ hg debugsub path sub source C:\libs\foo-lib\ revision test bad subpaths pattern $ cat > .hg/hgrc <<EOF > [subpaths] > .* = \1 > EOF $ hg debugsub abort: bad subrepository pattern in $TESTTMP/outer/.hg/hgrc:2: invalid group reference [255]