Last active
September 2, 2019 07:37
-
-
Save raphink/eed4d2dbd9a9749dde6f349e1de4155f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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