tests/test-paths
author Dirkjan Ochtman <dirkjan@ochtman.nl>
Mon, 26 Jan 2009 16:40:43 +0100
changeset 7715 fd3266287b40
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
graphlog: reuse cmdutil.loglimit() instead of redefining

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