If I issue this command in terminal in a git repository it gives me commit unique ids or what I know as revision list, like below:
$ git rev-list --reverse master
de1ea6c8a9cd195b348562f42c6cef5bd3555748
2da45a72621e5c611e0d9f47fa7799fc24476c3c
How can I achieve the same result in Mercurial repository?
Basically, it’s an output customization on the
hg logcommand:You can supply
-rto specify which revset you want to display, like-r 100:200(changesets since #100 up to #200) or-r "ancestors(v1.1)"(what was included in version 1.1).Note that you can specify other fields like
{desc}or{rev}. See also the Mercurial book.