Skip to content

Instantly share code, notes, and snippets.

@nfreear
Created September 13, 2012 09:54
Show Gist options
  • Select an option

  • Save nfreear/3713302 to your computer and use it in GitHub Desktop.

Select an option

Save nfreear/3713302 to your computer and use it in GitHub Desktop.
Find git logs that happened out of "office hours"
# With colours
$ git log -50 --pretty=format:'%Cred%h%Creset - %C(yellow)%ci%Creset - %s' --abbrev-commit | grep -m 2 -E "(0.|1[89]|2.):..:"
# No colours > CSV
$ git log -400 --pretty=format:'%h,%ci,"%s",%aN' --abbrev-commit | grep -E "(0.|1[89]|2.):..:" > git-log-grep-worktimes.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment