tests/test-paths
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
Fri, 15 Feb 2008 16:06:36 -0200
changeset 6120 f89878df40fe
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
move the reading of branch.cache from _branchtags to branchtags

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