Skip to content

tmc/gitstats

Repository files navigation

gitstats

gitstats is a tool to analyze git repositories.

This software is in early stages. Currently it produces CSV files that should be loaded into duckdb for analysis.

Samples Queries

Show the top 20 files by number of edits:

WITH changes as (
    select count(*) n, filename from read_csv('git_history.csv', header=True, auto_detect=True) GROUP BY filename
)
select * from changes order by n desc limit 20;

About

gitstats provides intelligence about your git repositories

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages