Skip to content

Instantly share code, notes, and snippets.

@firesofmay
Created July 10, 2013 17:28
Show Gist options
  • Save firesofmay/5968289 to your computer and use it in GitHub Desktop.
Save firesofmay/5968289 to your computer and use it in GitHub Desktop.
Git Pretty Log Coloumn Output
git log --pretty=format:'%h|%ad|%an|%s' -20 --date=local | awk -F '|' '{ printf "%s %s %-20s %s\n", $1, $2, $3, $4 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment