1
0
Fork 0

started with git-history metrics scripting

This commit is contained in:
Christian Kühnel 2020-02-18 13:19:40 +01:00
parent 22ce8e9632
commit 10f4dd084b

10
scripts/metrics/repo_history.py Executable file
View file

@ -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()