view tests/test-paths @ 6294:9cd6292abfdf

Merge
author Bryan O'Sullivan <bos@serpentine.com>
date Mon, 17 Mar 2008 14:51:41 -0700
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