Marcus Leon
Marcus Leon

Reputation: 56669

See Mercurial changeset summary/user/date

Given a Mercurial changeset 123, how can yous see the summary, user, and date associated with the changeset? Figured there was an hg log option but couldn't see it..

Upvotes: 4

Views: 1637

Answers (2)

dls
dls

Reputation: 4146

you can also try Mercurial Templates to get just the output you're after. Several keywords are supported, but in your example this command would work:

hg log -r 123 --template '{author}\n{date}\n{desc}\n'

Upvotes: 8

Jason Day
Jason Day

Reputation: 8839

Have you tried hg log -r 123?

Upvotes: 7

Related Questions