From 10f4dd084b261b346bee18b686755f195a9e2623 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=BChnel?= Date: Tue, 18 Feb 2020 13:19:40 +0100 Subject: [PATCH] started with git-history metrics scripting --- scripts/metrics/repo_history.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 scripts/metrics/repo_history.py diff --git a/scripts/metrics/repo_history.py b/scripts/metrics/repo_history.py new file mode 100755 index 0000000..0426724 --- /dev/null +++ b/scripts/metrics/repo_history.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 + +import sqlite3 +import os + +conn = sqlite3.connect(os.path.expanduser('~/llvm-propject.db')) +c = conn.cursor() + +c.execute('CREATE TABLE repo (hash text)') +conn.commit() \ No newline at end of file