tests/test-paths
author Matt Mackall <mpm@selenic.com>
Sat, 20 Jun 2009 09:00:02 -0500
changeset 8856 f8d00346a62d
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
rollback: minor clarification (issue828)

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