Ask HN: How do you measure contributions to a coding project?
I am curious to know what metrics do people use to measure relative contributions to a project. Bare git metrics like Lines of Code, Number of commits seem to be partial (and at worse) dangerous sources of accounting.
2 comments
[ 5.0 ms ] story [ 16.7 ms ] threadIt measures the "the amount of times programmers touch the lines". Source : https://www.yegor256.com/2014/11/14/hits-of-code.html
Measuring the volume of changes in any form is problematic, since it’s possible that the programmers who add the most code are actually making the code worse by accumulating technical debt faster than business value (instead of refactoring so that important changes can be made simply).