Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mercurial Commit Charts / Graphs [closed]

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): alt text

like image 784
knpwrs Avatar asked Jan 14 '11 09:01

knpwrs


3 Answers

You can just do hg serve and 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.

like image 164
Ry4an Brase Avatar answered Dec 18 '22 04:12

Ry4an Brase


I like the Mercurial Activity extension, which creates a graph over time, with commits per user and displays tags as milestones: alt text

like image 33
Ton Plomp Avatar answered Dec 18 '22 06:12

Ton Plomp


If you publish your repository on a webserver with hgweb/hgwebdir, then you can see the history in your webbrowser.

like image 23
Wim Coenen Avatar answered Dec 18 '22 05:12

Wim Coenen