How can I graph the Lines of Code history for git repo?
- by dbr
Basically I want to get the number of lines-of-code in the repository after each commit.
The only (really crappy) ways I have found is to use git filter-branch to run "wc -l *", and a script that run git reset --hard on each commit, then ran wc -l
To make it a bit clearer, when the tool is run, it would output the lines of code of the very first…