Mercurial supports push-style cloning of repositories to remote hosts, however newly cloned repositories don\'t contain working copies. Is there any \'hidden\' option to make me
You can create a hook on the receiving side. Add the following section to your repo/.hg/hgrc
[hooks] changegroup = hg update
That should do it. Note that hooks are not cloned.