tests/test-paths
author Matt Mackall <mpm@selenic.com>
Mon, 01 Jun 2009 14:51:47 -0500
changeset 8707 0550dfe4fca1
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
commit: editor reads file lists from provided context

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