tests/test-paths
author Dirkjan Ochtman <dirkjan@ochtman.nl>
Sat, 06 Feb 2010 11:28:03 +0100
changeset 10326 8b90e2966219
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
commands: deprecate the heads -a option Hopefully we can remove it entirely in two releases or so.

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