Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Svnstat for Mercurial

Is there a utility for Mercurial which does something like svnstat does for subversion?

like image 824
Fressner Avatar asked Feb 03 '11 11:02

Fressner


2 Answers

The maillist post found here summarizes a few possibilties to generate reports for mercurial repositories. The mercurial activity extension mentioned there is under active development and looks promising.

like image 135
Tom Regner Avatar answered Sep 28 '22 08:09

Tom Regner


You can get a text graph showing the differences between two revisions

hg diff -r REV -r REV --stat

So that:

hg diff -r 0 -r tip --stat

shows info across the whole repo, but only on a file by file basis.

Alternately there are the hg activity, hg chart, and hg churn extensions.

like image 29
Ry4an Brase Avatar answered Sep 28 '22 08:09

Ry4an Brase