I've started using Hg (Mercurial) as my SCM client, just to get my feet wet with it (I'm the only guy working on the project, so yeah, no need for the more advanced features yet). I've been going through the tutorial at hginit.com, but I've found a rather inconvenient aspect of the hg log feature. Basically, when I type it, I get the newest changes on top, and the oldest at the bottom. But this is simply annoying, as most of the time, you want to see the newest revisions. So... say I have 100 changesets, and I want to have a look over the 98th one. Do I scroll all the way up? Or is there a way to make Hg (Mercurial) list the changes the other way around? Thanks!

link|improve this question

80% accept rate
feedback

3 Answers

up vote 3 down vote accepted

Use hg log -r:

link|improve this answer
Both this and David Sykes' responses work, so I've upvoted both. I'm choosing this because I have to choose an 'accepted answer' and this is the shorter way :) – XLR3204S Aug 2 '10 at 14:42
It's clearly the better way, I also upvoted, but left mine in as it might be helpful – David Sykes Aug 5 '10 at 7:00
feedback

Just limit the display of hg log with -l/--limit.

E.g. hg log -l 100 to only display 100 changes.

If you want to avoid scrolling, you can also pipe the output to a pager (e.g. hg log | less) or use the pager extension.

link|improve this answer
No, this is not what I had in mind. So basically, when I write hg log, I get something like *latest change*\ *second latest change*\ *thirst latest change*\ *...*\ *first change*\ But I want it to be *first change*\ *second change*\ *...*\ *latest change*\ I don't need to limit the number of changesets displayed. – XLR3204S Aug 2 '10 at 11:55
Umm, if you limit the number of changes to 5, then you'll see latest change, second latest change, ..., fourth latest change, fifth latest change. – ebynum Aug 2 '10 at 12:48
@XLR3204S, I think your problem is because the latest changes are on top. So you want to avoid scrolling? Just use a pager, or display less revisions (with --limit). – tonfa Aug 2 '10 at 13:02
feedback
hg log | tail -r
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.