It is possible to get a git shortlog result with the date/time of the commit?
Otherwise is it possible to get git log to group commits and sum them by author and print out only the message and time?
It is possible to get a git shortlog result with the date/time of the commit?
Otherwise is it possible to get git log to group commits and sum them by author and print out only the message and time?
It is possible to get a git shortlog result with the date/time of the commit?
Yes, using the --format=format:%cI
option. See "PRETTY FORMATS" in the git-log man page for details.
Otherwise is it possible to get git log to group commits and sum them by author and print out only the message and time?
Not that I can find. You could whip something up with libgit2.