Created
March 17, 2016 21:21
-
-
Save adamthebig/9d2cf1281797c3f9f958 to your computer and use it in GitHub Desktop.
Export commits from a git repo into a pretty spreadsheet (CSV)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git log --pretty=format:'"%h","%an","%aD","%s",' --shortstat --no-merges | paste - - - > log.csv |
Thank you! very useful...
Here is ahother variant only with the date and text commit:
git log --pretty=format:'"%ad","%s",' --date=short > log.csv
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks @adamthebig