I am trying to write a little GUI for my gitolite server. My plan is to create a hook, which then writes the git log
to a database or a file. Then a php file can read this data and display it like the network on github.
My problem is now how do I know which user has made the commit? Because if his git email is different then the email in my servers database I have no way to identify the user.
Do you have any suggestions for this problem?
Is there a better way to get all commits than git log
?