I want to keep a record how many changes do I make to my source code in terms of LOC.
For example, let's say I have a directory with sources/header files, etc. I need a tool that shows me
- what files are changed
- How many LOC are modified (changed/removed/added)
since my last check point.
What tool does that for me? If there is no tool out there, what would be the way to do that?
I think about making a script using ruby/python to run diff to generate the change list to be analyzed.
What do you think?