summaryrefslogtreecommitdiff
path: root/maintainer_old/checkpatch/checkpatch.py
diff options
context:
space:
mode:
Diffstat (limited to 'maintainer_old/checkpatch/checkpatch.py')
-rwxr-xr-xmaintainer_old/checkpatch/checkpatch.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/maintainer_old/checkpatch/checkpatch.py b/maintainer_old/checkpatch/checkpatch.py
new file mode 100755
index 0000000..d169872
--- /dev/null
+++ b/maintainer_old/checkpatch/checkpatch.py
@@ -0,0 +1,8 @@
+#!/usr/bin/python3
+
+from pygit2 import *
+
+repo = Repository("./")
+for commit in repo.walk(repo.head.target):
+ print(commit.committer)
+ input()