started with git-history metrics scripting
This commit is contained in:
parent
22ce8e9632
commit
10f4dd084b
1 changed files with 10 additions and 0 deletions
10
scripts/metrics/repo_history.py
Executable file
10
scripts/metrics/repo_history.py
Executable 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()
|
Loading…
Reference in a new issue