开发者

Svnstat for Mercurial

开发者 https://www.devze.com 2023-02-08 02:29 出处:网络
Is there a utility for Mercurial which does开发者_StackOverflow中文版 something like svnstat does for subversion?The maillist post found here summarizes a few possibilties to generate reports for merc

Is there a utility for Mercurial which does开发者_StackOverflow中文版 something like svnstat does for subversion?


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.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消