User Tools

Site Tools


oss-health-metrics:metrics:repository-size

This is an old revision of the document!


Repository Size

1. Acronym

2. Alternate Names

3. Classification

Code health

4. Description

Overall size of the repository or number of commits

Pseudo Code

Visualization

Interpretation

5. Example Implementation

Total number of commits per project:

select count(commits.id) as num_commits, projects.name as project_name, projects.url as url
from commits 
	join project_commits on commits.id = project_commits.project_id
	join projects on projects.id = project_commits.project_id
group by projects.id   

Git: Lines of code and documentation in a repository:

6. Data Exchange Format

7. Known Implementations

8. References to Academic Literature

9. Internet References

10. Contributors

Anna Buhman

oss-health-metrics/metrics/repository-size.1493239946.txt.gz · Last modified: 2017/04/26 20:52 by abuhman