tests/test-paths
author Greg Ward <greg-hg@gerg.ca>
Thu, 25 Mar 2010 15:37:39 -0400
branchstable
changeset 10776 08870cf7d388
parent 5951 92eb0a019bf2
permissions -rwxr-xr-x
Fix default style so 'log --copies' has a start and an end.

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