#!/usr/bin/python3 from pygit2 import * repo = Repository("./") for commit in repo.walk(repo.head.target): print(commit.committer) input()