Cloning mercurial repo to the remote host - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T01:26:57Z http://stackoverflow.com/feeds/question/831645 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/831645/cloning-mercurial-repo-to-the-remote-host 3 Cloning mercurial repo to the remote host pachanga 2009-05-06T20:43:00Z 2009-10-21T19:47:05Z <p>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?</p> <p>Here is an example:</p> <p>1) hg init hello</p> <p>2) hg clone hello ssh://somehost/hello </p> <p>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:</p> <p>3) ssh somehost 'cd hello &amp;&amp; hg update'</p> <p>Is there any way to avoid step 3) ?</p> http://stackoverflow.com/questions/831645/cloning-mercurial-repo-to-the-remote-host/831670#831670 3 Answer by Nathan Kitchen for Cloning mercurial repo to the remote host Nathan Kitchen 2009-05-06T20:49:29Z 2009-05-06T20:54:47Z <p>There is no hidden option to force an update of a remote repository. Only one condition determines whether the update is performed (e.g., line 239 of hg.py in the Mercurial 1.0.1 source):</p> <pre><code>if dest_repo.local(): </code></pre> <p>If you're going to do some work in the working copy, you're going to log in anyway, at which point running "hg update" is pretty easy, so there's not much motivation to relax the current constraint on remote clones.</p> http://stackoverflow.com/questions/831645/cloning-mercurial-repo-to-the-remote-host/837173#837173 6 Answer by Nick for Cloning mercurial repo to the remote host Nick 2009-05-07T21:40:32Z 2009-05-07T23:31:54Z <p>You can create a hook on the receiving side. Add the following section to your repo/.hg/hgrc</p> <pre><code>[hook] changegroup = hg update </code></pre> <p>That should do it. Note that hooks are not cloned. </p> http://stackoverflow.com/questions/831645/cloning-mercurial-repo-to-the-remote-host/1424133#1424133 -2 Answer by tehfink for Cloning mercurial repo to the remote host tehfink 2009-09-14T21:59:37Z 2009-10-21T19:47:05Z <p>i have the same problem, and unfortunately there is no simple solution to avoid step 3. mercurial doesn't check out the working copy remotely as "git clone" does, so you will always have this extra step when deploying your html files <strong>for the first time</strong>, for example.</p>