summaryrefslogtreecommitdiff
path: root/maintainer_old/checkpatch/checkpatch.py
blob: d1698724345716a2dca6a0ec0581f080642b58fb (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/python3

from pygit2 import *

repo = Repository("./")
for commit in repo.walk(repo.head.target):
    print(commit.committer)
    input()