tests/test-paths
author Dongsheng Song <dongsheng.song@gmail.com>
Sun, 25 Jan 2009 15:11:43 +0800
changeset 7688 9e70287086c7
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
i18n: Starting Chinese Translation of Mercurial

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