-
-
Save attacker34/ad58590b38d60c10bd3232a50c7fde86 to your computer and use it in GitHub Desktop.
Revisions
-
EdOverflow created this gist
Apr 19, 2018 .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,27 @@ #!/bin/bash echo "*** Running..." keywords=( "password" "key" "passwd" "secret" ) echo echo "Developers" echo "==========" if [[ $1 != "" ]]; then git log --reflog --pretty="format:%aE" | sort | uniq | grep "$1" fi echo echo "Keywords" echo "========" for word in ${keywords[@]}; do git log --reflog --pretty="format:- (%H) %b" | grep --color "$word" done echo echo "*** Done."