Mercurial > hg
view tests/test-default-push @ 9122:a9eae2f3241c
url: fix use of non-int port in https connections via proxy
Complements eef406165507 (issue1725).
author | Wagner Bruna <wbruna@softwareexpress.com.br> |
---|---|
date | Tue, 14 Jul 2009 17:12:12 -0300 |
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/'