I would like to store the following info per commit like so,
for commit in repo.iter_commits(branch):
author_name=commit.author.name
commit_id=commit
commit_authored_date=datetime.datetime.fromtimestamp(commit.authored_date)
commit_committed_date=datetime.datetime.fromtimestamp(commit.committed_date)
num_files_touched=?
num_lines_added=?
num_lines_removed=?
how can I do this?