Skip to content

Instantly share code, notes, and snippets.

@flipace
Forked from pwenzel/git-log-to-tsv.sh
Created October 2, 2015 09:29
Show Gist options
  • Save flipace/74f457d09a4d8f3589d9 to your computer and use it in GitHub Desktop.
Save flipace/74f457d09a4d8f3589d9 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