Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tuchangwei/065be1e3de704c0d801c9feaed383892 to your computer and use it in GitHub Desktop.
Save tuchangwei/065be1e3de704c0d801c9feaed383892 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