Skip to content

Instantly share code, notes, and snippets.

@fawda123
Created August 31, 2017 20:09
Show Gist options
  • Save fawda123/5ecb73e1304e7faee83eb05b922937e7 to your computer and use it in GitHub Desktop.
Save fawda123/5ecb73e1304e7faee83eb05b922937e7 to your computer and use it in GitHub Desktop.
save git log to csv with header
echo sha, contributor, date, message > log.csv
git log --date=local --pretty=format:'%h, %an, %ad, "%s"' >> log.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment