Created
July 14, 2018 21:33
-
-
Save adw0rd/6763366d55c8c61a0cb58e2fd56e0c85 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In [1]: from git import Repo, Commit | |
In [2]: repo = Repo('/tmp/xxx') | |
In [3]: list(repo.iter_commits('master', 'README.md', max_count=1))[0].author | |
Out[3]: <git.Actor "Mikhail Andreev (adw0rd) <[email protected]>"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment