view tests/test-paths @ 7021:75ce89ed3b6e

hgcommand.vim: refer Vim7 users to vcscommand plugin
author Christian Ebert <blacktrash@gmx.net>
date Wed, 10 Sep 2008 09:41:42 -0400
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