Trying to figure out how long time was spent in a commit in a Git post-commit hook.
I've got a post-commit git hook that submits information over an API about the commit. What I want to do is figure out how long time was spent on the commit. Roughly.
My assumption is that a rough value can be figured out by finding the minimum of all the creation-time and modification-time of the files involved and compare with the maximum creation- and modification-time.
I can easily do this in a Python script. If someone tells me it was the files "foo.txt", "bar.txt" and "path/bla.txt" I can quickly do some arithmetic in a script based on these files.
So, In a git post-commit hook how do I get a list of the files that were changed?
--name-onlybut that also includes a bunch of information about the commit which I don't care about. – Peter Bengtsson Nov 17 '10 at 14:58