In Mercurial, how do you examine a single changeset? hg log -l 5 will give me a summary of the newest 5 changesets, but how do I get a list of the files changed in one chan
If you want to see how did the contents of the files were changed for a given revision you can use:
hg diff --change
If you want to see the diff between the current revision and the one you are interested in, you can use:
hg diff -r