Last active
April 18, 2019 09:30
-
-
Save pr8x/b7c987248568ceeecb7397154b7d0c12 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
git log --format='%aE' | sort -u | while read line ; do printf "\n\n%s\n\n" "$line"; \ | |
git grep -l TODO | xargs -n1 git blame -f -n -e -w | grep "$line" | grep TODO | sed "s/.\{9\}//" | sed "s/(.*)[[:space:]]*//"; done | tee todo_log.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment