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 mercurial call update upon these cloned repos?
Here is an example:
1) hg init hello
2) hg clone hello ssh://somehost/hello
ssh://somehost/hello only contains .hg directory and I have to execute the following command in the shell in order to fill the working copy:
3) ssh somehost 'cd hello && hg update'
Is there any way to avoid step 3) ?