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