view tests/test-paths @ 6415:69d1946a1d02

merge with crew-stable
author Thomas Arendsen Hein <thomas@intevation.de>
date Mon, 31 Mar 2008 00:01:27 +0200
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