Reputation: 56669
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
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