vote up 4 vote down star

I'd like to be able to see someone's total lines of code contributed to our application. Say the app is 10k lines of code, I'd like to see the breakdown of how many LOC each developer has committed to the repository. Is there anything for SubVersion to get this kind of info?

flag

Just out of curiosity...why do you want to count lines of code? – Justin Niessner Aug 31 at 16:48
I'm just curious about certain developer's contribution to the project. – swilliams Aug 31 at 16:51
Ok. Just keep in mind that LOC is very general. You could have a more experienced developer compressing something from 15 lines down to 5...just something to keep in mind. – Justin Niessner Aug 31 at 16:55
I agree completely, this is really just for curiousity. :) – swilliams Aug 31 at 16:56
I would also warn against taking these statistics too seriously, or using them to judge the value of someone's contribution, especially in reference to performance reviews or raises. – Gorgapor Sep 1 at 23:12
show 1 more comment

2 Answers

vote up 2 vote down check

There is MPY SVN STATS and also StatSVN if I remember correctly that should do what you want and much more.

I don't think it can be done with tortoisesvn all the tools that I know are command line tools and I fear some of them linux tools.

link|flag
As long as I can run the commandline tools via cygwin, it wouldn't be a problem. I'll take another gander at StatsSVN though. – swilliams Aug 31 at 16:56
Looks like StatSVN (just 2 s's) did what I needed. Thanks! – swilliams Aug 31 at 17:17
vote up 2 vote down

svn blame can get you started, by prepending the committer's name to each line of source code.

Their example output was

$ svn blame http://svn.red-bean.com/repos/test/readme.txt
     3      sally This is a README file.
     5      harry You should read this.

So you could do something like

cat ./*blamed | awk '{print $2}' | sort | uniq -c

on a file formed like

$ cat b.txt
3 Mark asdf
3 Mark asdf
3 Bill fdas
4 Bill fdas
5 Fred fdfd

to get output like

$ cat b.txt | awk '{print $2}' | sort | uniq -c
      2 Bill
      1 Fred
      2 Mark

... but there's probably a cleaner way to do it than that.

link|flag
Is that only for a single file though? I'd like something for a whole project. – swilliams Aug 31 at 16:55
The page says svn blame works for "the specified files", so I assume you can specify as many files as you'd like. I don't have svn here so I can't test it out. – Mark Rushakoff Aug 31 at 16:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.