From 296c6b9ee85209c0ce375717e30686545baea107 Mon Sep 17 00:00:00 2001 From: Carlos Maiolino Date: Sat, 2 May 2026 14:09:27 +0200 Subject: Save new changes --- maintainer_old/checkpatch/checkpatch.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 maintainer_old/checkpatch/checkpatch.py (limited to 'maintainer_old/checkpatch/checkpatch.py') 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() -- cgit v1.2.3