tests/test-paths
author Matt Mackall <mpm@selenic.com>
Mon, 16 Nov 2009 14:50:24 -0600
changeset 9870 f6a2dbbb0776
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
Added tag 1.4 for changeset 31ec469f9b55

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