mercurial-api

How can I list a series of revisions using 'hg log'?

孤街浪徒 提交于 2020-12-02 03:40:59
问题 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.

How can I list a series of revisions using 'hg log'?

Deadly 提交于 2020-12-02 03:39:03
问题 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.

How can I list a series of revisions using 'hg log'?

。_饼干妹妹 提交于 2020-12-02 03:38:41
问题 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.