Re: Yet another SGI compiler error...
"Sebastian Geerken" <[email protected]>
| Newsgroups | gmane.comp.web.dillo.devel |
|---|---|
| Message-ID | <[email protected]> |
On Wed, Jan 30, Chris Sorenson wrote: > > On Wed, Jan 30, Chris Sorenson wrote: > > > > > > > > > Thoughts? > > > > > > > Try the latest commit. > > > > Sebastian > > > > What's the invocation for checking out the latest commit > from the repository? I didn't see it in the developer > section of the website. I assume `hg clone dillo-3` grabs > 3.0.2 as it existed on it's release date? "hg clone dillo3" will simply copy *your* repository, not the one from hg.dillo.org. Cloning again the repository from hg.dillo.org will indeed get you the newest changes: mv dillo3 dillo3_copy hg clone http://hg.dillo.org/dillo dillo3 cd dillo3 But this is faster: in the repository (after "cd dillo3"), type hg pull http://hg.dillo.org/dillo hg up to get the newest changes. "hg pull", without the URL, should be sufficient in most cases. HTH. Sebastian