Last active
October 11, 2019 20:48
-
-
Save Willamin/3a177eda28bc12c19ea80806ac906851 to your computer and use it in GitHub Desktop.
This file contains 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 | |
AUTHOR="Will Lewis" | |
git log --all --date=format:'%a %Y-%m-%d' --format='%ad %aN %s' |\ | |
rg $AUTHOR |\ | |
awk -v i=1 'NR>1 && $1!=p { print "" }{ p=$1 } 1' |\ | |
tail -r |\ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment