Skip to content

Instantly share code, notes, and snippets.

@eniuz
Forked from pwenzel/git-log-to-tsv.sh
Created June 1, 2017 21:02
Show Gist options
  • Save eniuz/ccfeb3148c7ea305db99fd8dae1d17fa to your computer and use it in GitHub Desktop.
Save eniuz/ccfeb3148c7ea305db99fd8dae1d17fa to your computer and use it in GitHub Desktop.
Git Log to Tab-Delimited CSV File
# Local Dates:
git log --date=local --pretty=format:"%h%x09%an%x09%ad%x09%s" > commits.local.tsv.txt
# ISO Dates:
git log --date=iso --pretty=format:"%h%x09%an%x09%ad%x09%s" > commits.iso.tsv.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment