view tests/test-paths @ 11079:39f725929f0c stable 1.5.2

i18n-pt_BR: synchronized with ee5b112aa529
author Wagner Bruna <wbruna@yahoo.com>
date Sat, 01 May 2010 17:55:44 -0300
parents 92eb0a019bf2
children
line wrap: on
line source

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