Quickies

[categories] [index] [all (527)] [latest]

Mercurial
  1. $ hg log --limit 3 --template '{node|short} | {date|isodatesec} | {author|user}: {desc|strip|firstline}\n'
    
    683a489bf341 | 2012-08-03 13:20:31 +0200 | nicolas: misc
    99de916e21d9 | 2012-08-02 11:10:28 +0200 | nicolas: misc
    a6a45f2e7ff6 | 2012-07-31 16:58:53 +0200 | nicolas: misc
    

    Even better with an alias in .hgrc

    [alias]
    shortlog = log --template '{node|short} | {date|isodatesec} | {author|user}: {desc|strip|firstline}\n'
    

    Now callable with:

    $ hg shortlog