tests/test-paths
author Brendan Cully <brendan@kublai.com>
Sat, 22 Nov 2008 00:21:57 -0800
changeset 7402 bffdab64dfbb
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
import: add similarity option (issue295)

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