Is there anything that can produce pretty charts / graphs for Mercurial commit history in a repository? I’m thinking something like what GitHub makes (only for Mercurial):

Is there anything that can produce pretty charts / graphs for Mercurial commit history
Share
You can just do
hg serveand then connect to http://localhost:8000 and a graph very similar to that will be on the ‘chart’ tab of that web page. As Wim points out you get the same behavior from running hgweb in a webserver, but you can do it with just Mercurial too.