From: Stephen D. <sd...@gm...> - 2010-03-06 15:19:03
|
On Sat, Mar 6, 2010 at 1:03 PM, Vasiljevic Zoran <zv...@ar...> wrote: > Hi! > > After some (longer) absence (first things first) I am > now trying to catch-up with the Mercurial repository. > > First thing that I noticed after checking out the > repository was that ChangeLog file is missing. > Any idea why? Do we not need it any more? That's right, it's not needed anymore. Because of the way that mercurial works, when you 'clone' (ie. cvs checkout) you get the whole repository on your local hard drive, not just the HEAD (which we now call 'tip'). So, when you do a 'hg log' you can see all changes ever made without hitting the network. Also, if you want something easier to browse, try doing 'hg serve' and then connecting to localhost with your browser. |