tests/test-paths
author Martin Geisler <mg@lazybytes.net>
Thu, 23 Jul 2009 00:25:34 +0200
changeset 9215 f6a880fa9cd7
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
purge: fix formatting of lists with proper reST markup

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