tests/test-paths
author Patrick Mezard <pmezard@gmail.com>
Mon, 07 Jul 2008 09:16:09 +0200
changeset 6801 71e339714586
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
mq: fix qrefresh losing copy information (issue 1134)

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