Analyzing a Git Repository
You can use DuckDB to analyze Git logs using the output of the git log command.
Exporting the Git Log
We start by picking a character that doesnβt occur in any part of the commit log (author names, messages, etc). Since version v1.2.0, DuckDBβs CSV reader supports 4-byte delimiters, making it possible to use emojis! π
Despite being featured in the Emoji Movie (IMDb rating: 3.4),
we can assume that the Fish Cake with Swirl emoji (π₯) is not a common occurrence in most Git logs.
So, letβs clone the duckdb/duckdb repository and export its log as follows:
git log --date=iso-strict --pretty=format:%adπ₯%hπ₯%anπ₯%s > git-log.csvThe resulting file looks like this:
2025-02-25T18:12:54+01:00π₯d608a31e13π₯Markπ₯MAIN_BRANCH_VERSIONING: Adopt also for Python build and amalgamation (#16400)2025-02-25T15:05:56+01:00π₯920b39ad96π₯Markπ₯Read support for Parquet Float16 (#16395)2025-02-25T13:43:52+01:00π₯61f55734b9π₯Carlo Piovesanπ₯MAIN_BRANCH_VERSIONING: Adopt also for Python build and amalgamation2025-02-25T12:35:28+01:00π₯87eff7ebd3π₯Markπ₯Fix issue #16377 (#16391)2025-02-25T10:33:49+01:00π₯35af26476eπ₯Hannes MΓΌhleisenπ₯Read support for Parquet Float16Loading the Git Log into DuckDB
Start DuckDB and read the log as a CSV π₯SV:
CREATE TABLE commits AS FROM read_csv( 'git-log.csv', delim = 'π₯', header = false, column_names = ['timestamp', 'hash', 'author', 'message'] );This will result in a nice DuckDB table:
FROM commitsLIMIT 5;βββββββββββββββββββββββ¬βββββββββββββ¬βββββββββββββββββββ¬βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ timestamp β hash β author β message ββ timestamp β varchar β varchar β varchar ββββββββββββββββββββββββΌβββββββββββββΌβββββββββββββββββββΌββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€β 2025-02-25 17:12:54 β d608a31e13 β Mark β MAIN_BRANCH_VERSIONING: Adopt also for Python build and amalgamation (#16400) ββ 2025-02-25 14:05:56 β 920b39ad96 β Mark β Read support for Parquet Float16 (#16395) ββ 2025-02-25 12:43:52 β 61f55734b9 β Carlo Piovesan β MAIN_BRANCH_VERSIONING: Adopt also for Python build and amalgamation ββ 2025-02-25 11:35:28 β 87eff7ebd3 β Mark β Fix issue #16377 (#16391) ββ 2025-02-25 09:33:49 β 35af26476e β Hannes MΓΌhleisen β Read support for Parquet Float16 ββββββββββββββββββββββββ΄βββββββββββββ΄βββββββββββββββββββ΄ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββAnalyzing the Log
We can analyze the table as any other in DuckDB.
Common Topics
Letβs start with a simple question: which topic was the most commonly mentioned in the commit messages: CI, CLI, or Python?
SELECT message.lower().regexp_extract('\b(ci|cli|python)\b') AS topic, count(*) AS num_commitsFROM commitsWHERE topic <> ''GROUP BY ALLORDER BY num_commits DESC;βββββββββββ¬βββββββββββββββ topic β num_commits ββ varchar β int64 ββββββββββββΌββββββββββββββ€β ci β 828 ββ python β 666 ββ cli β 49 ββββββββββββ΄ββββββββββββββOut of these three topics, commits related to continuous integration dominate the log!
We can also do a more exploratory analysis by looking at all words in the commit messages. To do so, we first tokenize the messages:
CREATE TABLE words AS SELECT unnest( message .lower() .regexp_replace('\W', ' ') .trim(' ') .string_split_regex('\W') ) AS wordFROM commits;Then, we remove stopwords using a pre-defined list:
CREATE TABLE stopwords AS SELECT unnest(['a', 'about', 'above', 'after', 'again', 'against', 'all', 'am', 'an', 'and', 'any', 'are', 'as', 'at', 'be', 'because', 'been', 'before', 'being', 'below', 'between', 'both', 'but', 'by', 'can', 'did', 'do', 'does', 'doing', 'don', 'down', 'during', 'each', 'few', 'for', 'from', 'further', 'had', 'has', 'have', 'having', 'he', 'her', 'here', 'hers', 'herself', 'him', 'himself', 'his', 'how', 'i', 'if', 'in', 'into', 'is', 'it', 'its', 'itself', 'just', 'me', 'more', 'most', 'my', 'myself', 'no', 'nor', 'not', 'now', 'of', 'off', 'on', 'once', 'only', 'or', 'other', 'our', 'ours', 'ourselves', 'out', 'over', 'own', 's', 'same', 'she', 'should', 'so', 'some', 'such', 't', 'than', 'that', 'the', 'their', 'theirs', 'them', 'themselves', 'then', 'there', 'these', 'they', 'this', 'those', 'through', 'to', 'too', 'under', 'until', 'up', 'very', 'was', 'we', 'were', 'what', 'when', 'where', 'which', 'while', 'who', 'whom', 'why', 'will', 'with', 'you', 'your', 'yours', 'yourself', 'yourselves']) AS word;
CREATE OR REPLACE TABLE words AS FROM words NATURAL ANTI JOIN stopwords WHERE word != '';We use the
NATURAL ANTI JOINclause here, which allows us to elegantly filter out values that occur in thestopwordstable.
Finally, we select the top-20 most common words.
SELECT word, count(*) AS count FROM wordsGROUP BY ALLORDER BY count DESCLIMIT 20;ββββββββββββ¬βββββββββ w β count ββ varchar β int64 βββββββββββββΌββββββββ€β merge β 12550 ββ fix β 6402 ββ branch β 6005 ββ pull β 5950 ββ request β 5945 ββ add β 5687 ββ test β 3801 ββ master β 3289 ββ tests β 2339 ββ issue β 1971 ββ main β 1935 ββ remove β 1884 ββ format β 1819 ββ duckdb β 1710 ββ use β 1442 ββ mytherin β 1410 ββ fixes β 1333 ββ hawkfish β 1147 ββ feature β 1139 ββ function β 1088 βββββββββββββ΄ββββββββ€β 20 rows βββββββββββββββββββββAs expected, there are many Git terms (merge, branch, pull, etc.), followed by terminology related to development (fix, test/tests, issue, format).
We also see the account names of some developers (mytherin, hawkfish), which are likely there due to commit messages for merging pull requests (e.g., βMerge pull request #13776 from Mytherin/expressiondepthβ).
Finally, we also see some DuckDB-related terms such as duckdb (shocking!) and function.
Visualizing the Number of Commits
Letβs visualize the number of commits each year:
SELECT year(timestamp) AS year, count(*) AS num_commits, num_commits.bar(0, 20_000) AS num_commits_vizFROM commitsGROUP BY ALLORDER BY ALL;βββββββββ¬ββββββββββββββ¬ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ year β num_commits β num_commits_viz ββ int64 β int64 β varchar ββββββββββΌββββββββββββββΌβββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€β 2018 β 870 β ββββ ββ 2019 β 1621 β βββββββ ββ 2020 β 3484 β ββββββββββββββ ββ 2021 β 6488 β ββββββββββββββββββββββββββ ββ 2022 β 9817 β ββββββββββββββββββββββββββββββββββββββββ ββ 2023 β 14585 β βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ ββ 2024 β 15949 β ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ ββ 2025 β 1788 β ββββββββ ββββββββββ΄ββββββββββββββ΄βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββWe see a steady growth over the years β especially considering that many of DuckDBβs functionalities and clients, which were originally part of the main repository, are now maintained in separate repositories (e.g., Java, R).
Happy hacking!