view tests/test-paths @ 9834:655ac26ad63e

hgignore.5: fix typo
author Martin Geisler <mg@lazybytes.net>
date Wed, 11 Nov 2009 21:29:35 +0100
parents 92eb0a019bf2
children
line wrap: on
line source

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