tests/test-paths
author timeless <timeless@gmail.com>
Sun, 25 Oct 2009 13:27:54 +0100
changeset 9646 5b001f534452
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
commands: adding --no-status to resolve to match status

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