Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

See Mercurial changeset summary/user/date

Tags:

mercurial

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..

like image 225
Marcus Leon Avatar asked Dec 06 '22 23:12

Marcus Leon


2 Answers

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'
like image 57
dls Avatar answered Feb 11 '23 03:02

dls


Have you tried hg log -r 123?

like image 21
Jason Day Avatar answered Feb 11 '23 02:02

Jason Day