tests/test-paths
author Dirkjan Ochtman <djc.ochtman@kentyde.com>
Sun, 07 Feb 2010 13:49:52 +0100
changeset 10361 49cd2e7fd91c
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
mq: deprecate qinit and qcommit

#!/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