On Wed, Jul 16, 2008 at 04:35:15PM -0700, Eric Schrock wrote: > hg status: 3.6 seconds > hg list: 8.1 seconds > hg pdiffs: 11.7 seconds
I don't recall what pdiffs actually does, but hg diff should get you that information in little more time than "hg status"; or, if you've already committed your changes, hg log -l1 -p (assuming you only committed one changeset ... you could do hg outgoing -p, but that involves a roundtrip to the server; it should still probably be less than 12 seconds). Danek