mercurial report on lines of code but on subdirectory deeper -


i using following command on root directory of our mercurial repository:

hg churn -d "2015-8-30 2016-7-27" . > out.txt 

it yields report following :

user1               28305  user2               15281  

but there directory structure underneeth , need reports per module , module 1 directory deeper root. there easy way ?

is there way same report limited group of users, interested in team. , want know delivered lines of code, not matters quality more important indication. want know modules touched , how , whom, know better expertise in more objective fashion.

so report should :

module 1: user1 1000 user2 2000 module 2: user1 3000 module 3: user2 500 

and on. there perhaps 300 modules in our software not easy list them 1 one, without kind of trick or script.

you can tell hg churn make reports explicitly included directories --include option:

$ hg churn -i some_subdirectory/ 

see hg churn more information.


Comments

Popular posts from this blog

javascript - Create a stacked percentage column -

Optimising Firebase database by automatically overwriting data -

javascript - Angular UI-Grid customTemplate directive causing rows to load slowly/? -