Is there a way to generate a git commit log for the last month, and export it as a CSV file? I\'m looking for something I can run from the command line, or a 3rd party app. I\'d
To add, if you want to apply date range, add --after or --before in this format "yyyy-mM-d"
git log --before="2016-12-1" --pretty=format:'"%h","%an","%ae","%aD","%s",' --shortstat --no-merges | paste - - - > log.csv