I'm looking to use gitpython to get data on a tree.. to list when the file was commit and the log given.. as far as I have gotten is
from git import *
repo = get_repo("/path/to/git/repo")
for item in repo.tree().items():
print item[1]
That just lists things like
<git.Tree "ac1dcd90a3e9e0c0359626f222b99c1df1f11175">
<git.Blob "764192de68e293d2372b2b9cd0c6ef868c682116">
<git.Blob "39fb4ae33f07dee15008341e10d3c37760b48d63">
<git.Tree "c32394851edcff4bf7a452f12cfe010e0ed43739">
<git.Blob "6a8e9935334278e4f38f9ec70f982cdc4f42abf0">
I don't see anywhere in the git.Blog docs that you can get this data.. am I barking up the wrong tree?