tests/test-paths
author Brendan Cully <brendan@kublai.com>
Wed, 10 Feb 2010 10:58:11 -0800
changeset 10407 2e8926e9cc32
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
mq: incorporate mq repo config when using --mq For example, incoming should use the paths defined in .hg/patches/hgrc instead of .hg/hgrc.

#!/bin/sh
hg init a
hg clone a b
cd a
echo '[paths]' >> .hg/hgrc
echo 'dupe = ../b' >> .hg/hgrc
hg in dupe | fgrep '../'
cd ..
hg -R a in dupe | fgrep '../'
true