view tests/test-paths @ 9302:73bec717b825

help: improve "hg help revisions" Add info about branch names, and other clarifications.
author Stuart W Marks <smarks@smarks.org>
date Sun, 02 Aug 2009 19:21:47 -0700
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