On Wed, Jul 16, 2008 at 11:59:28AM -0500, Will Fiveash wrote: > In regards to point #3, will elpaso.eng/onnv.sfbay support an ssh/hg > service as hg.opensolaris.org does? I ask this because the time to > clone a gate to my system in Austin, TX varies greatly depending on the > protocol used to transfer the data: > > $ timex hg clone ssh://anon at hg.opensolaris.org/hg/onnv/onnv-gate > destination directory: onnv-gate > requesting all changes > adding changesets > adding manifests > adding file changes > added 7107 changesets with 97565 changes to 50605 files > updating working directory > 45608 files updated, 0 files merged, 0 files removed, 0 files unresolved > > real 15:50.05 > user 1:46.08 > sys 25.74
I wonder if you can improve your time by using ssh compression? In your ~/.hgrc find the section heading "[ui]" and beneath it add the ssh option. So you'll have this somewhere in ~/.hgrc: ---cut--- [ui] ssh = ssh -C ---cut--- Dean