How can I list a series of revisions using 'hg log'?
问题 I'm attempting to use the hg log command to show a series of revisions, x through y . When I do this: hg log -r 1+5 I get this: changeset: 1:7320d2a9baa5 user: Tim Post <tpost@whereiwork.com> date: Fri Sep 30 20:38:29 2011 +0800 summary: Foo foo everywhere is foo changeset: 5:8d6bea76ce60 user: Tim Post <tpost@whereiwork.com> date: Fri Sep 30 20:51:42 2011 +0800 summary: Blah blah blah Which is Mercurial understanding that I want to see revisions one and five instead of one through five.