Skip to content

Instantly share code, notes, and snippets.

@raphink
Last active September 2, 2019 07:37
Show Gist options
  • Save raphink/eed4d2dbd9a9749dde6f349e1de4155f to your computer and use it in GitHub Desktop.
Save raphink/eed4d2dbd9a9749dde6f349e1de4155f to your computer and use it in GitHub Desktop.
#!/bin/bash
SINCE=${1:-midnight}
DIRS="$HOME/dev $HOME/go/src"
AUTHOR=${2:-Raphaël Pinson}
find $DIRS \
-type d -name .git -exec git --git-dir {} --no-pager \
log --all --since "$SINCE" --author="$AUTHOR" \
--pretty=format:'{} %h %ad %s%n' \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment