view tests/test-default-push @ 5069:35f67dd712d0

convert: svn: ensure leading / is removed from paths in _find_children (broken in 2bd996d0aaf8)
author Brendan Cully <brendan@kublai.com>
date Sat, 04 Aug 2007 18:02:37 -0700
parents 6dbb8ae0a0b3
children
line wrap: on
line source

#!/bin/sh

hg init a
echo a > a/a
hg --cwd a ci -Ama

hg clone a c

hg clone a b
echo b >> b/a
hg --cwd b ci -mb

echo % push should push to default when default-push not set
hg --cwd b push | sed 's/pushing to.*/pushing/'

echo % push should push to default-push when set
echo 'default-push = ../c' >> b/.hg/hgrc
hg --cwd b push | sed 's/pushing to.*/pushing/'