Given a Mercurial changeset 123, how can yous see the summary, user, and开发者_StackOverflow社区 date associated with the changeset? Figured there was an hg log
option but couldn't see it..
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'
Have you tried hg log -r 123
?
精彩评论