I set up my "mercurial_server" as follows (except I used hgwebdir.cgi instead of hgweb.cgi) and I created a repo

hg init

then I create a local repo work on my code and then push my updates to the server (tortoisehg), they show up on the web, but not in the actual directory? Is this supposed to happen I cant find a write up on the database

link|improve this question

hgwebdir.cgi was retired with Mercurial version 1.6 -- a year ago. The hgwebdir.cgi that ships with mercurial has completely replaced its functionality -- it does both what hgweb.cgi and what hgwebdir.cgi used to do. – Ry4an Nov 6 '11 at 19:45
@Ry4an: hgwebdir.cgi was replaced by hgwebdir.cgi?? – daniel kullmann Nov 9 '11 at 15:40
err, replaced by hgweb.cgi. Sorry. – Ry4an Nov 9 '11 at 20:59
feedback

1 Answer

up vote 1 down vote accepted

This is normal. The repository (.hg directory) contains the change history you pushed. The working copy is still empty.

To update your working copy to a version from the repository, you need to run the "hg update" command on your server (use the "-C tip" argument to show the latest). This will make the files appear in the directory next to your .hg directory.

In most cases, you do not need to do that on your server unless you are implementing a continuous integration/deployment process.

link|improve this answer
ok thats great, I understand, hmm thats a useful feature (wheels turning) – jtzero Nov 6 '11 at 18:31
1  
Perfect answer. The other piece I'd add is that it's good to keep no checkout in the hgweb server because otherwise you'll find someone has made live edits there that never got checked in any repository. You can remove the working dir from any mercurial respoitory with hg update null. – Ry4an Nov 6 '11 at 19:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.