Last active
October 11, 2019 20:48
-
-
Save Willamin/3a177eda28bc12c19ea80806ac906851 to your computer and use it in GitHub Desktop.
Revisions
-
Willamin revised this gist
Oct 11, 2019 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ #!/bin/bash AUTHOR="Will Lewis" git log --all --date=format:'%a %Y-%m-%d' --format='%ad %aN %s' |\ -
Willamin revised this gist
Oct 11, 2019 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -4,3 +4,4 @@ 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 |\ -
Willamin revised this gist
Oct 10, 2019 . 1 changed file with 0 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,6 @@ 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 |\ -
Willamin created this gist
Oct 10, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ AUTHOR="Will Lewis" DATE_FILTER="2019-10" git log --all --date=format:'%a %Y-%m-%d' --format='%ad %aN %s' |\ rg $AUTHOR |\ rg $DATE_FILTER |\ awk -v i=1 'NR>1 && $1!=p { print "" }{ p=$1 } 1' |\ tail -r |\