I am using this for loop to loop through all commits:
repo = Repo("C:/Users/shiro/Desktop/lucene-solr/")
for commit in list(repo.iter_commits()):
print commit.files_list # how to do that ?
How can I get a list with the files affected from this specific commit ?
git diff --numstat
, which calculates a lot more than just the file list. – Octad