tests/test-paths
author Dirkjan Ochtman <dirkjan@ochtman.nl>
Sat, 04 Apr 2009 17:55:52 +0200
changeset 7967 c03f42159afa
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
cmdutil: refactor handling of templating in show_changeset()

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