views:

99

answers:

1

Is there any good tool that computes the number of changed lines of code over a certain time period in a mercurial repository? Something along the lines of statsvn would be great, but anything counting the number of changed lines of code within 6 months will do (including a clever combination of arguments to hg log). Thanks.

PS: Please do not discuss the purpose of measuring this number ;)

+3  A: 

The hg churn extension is what you want.

You can get visual results with hg activity or hg chart.

Ry4an