Tutorial - examining repository history

At this point, we have followed TutorialClone to clone a ["Repository"]; our local copy is called my-hello.

Let's take a look at the history of this repository. To do this, we use the log command. This prints a summary of every event that has occurred in the ["Repository"], going backwards in time from the most recent.

 $ cd my-hello
 $ hg log
 changeset:   2:bd2fb7137c85cd5e6b04db4c72a45699e0d90ea9
 tag:         tip
 user:        bos@camp4.serpentine.com
 date:        Wed Jun 29 12:04:20 2005
 summary:     Add a helpful, descriptive comment to the makefile.

 changeset:   1:4a17053ec93dd51ea37340f639db457c42065da6
 user:        bos@camp4.serpentine.com
 date:        Wed Jun 29 12:03:45 2005
 summary:     Add description to hello.c.

 changeset:   0:5931063e4b0fb17fc4625447b69296356ca6cdfc
 user:        bos@camp4.serpentine.com
 date:        Wed Jun 29 12:02:36 2005
 summary:     Add hello, world.

These lines of output bear some describing.

We can get more detailed history information by asking for verbose output:

 $ hg -v log
 revision:    1:1c18e981f8b0bd07d2b3343825486c010a82ad6a
 changeset:   1:4a17053ec93dd51ea37340f639db457c42065da6
 user:        bos@camp4.serpentine.com
 date:        Wed Jun 29 12:03:45 2005
 files:       hello.c
 description:
 Add description to hello.c.

 ...

Verbose output contains a few more fields than the default output.

Now that we have some slight idea of what has happened, let's jump in and make some changes! Onwards, to TutorialFirstChange!