Created
June 11, 2015 03:26
-
-
Save lmarkus/d6aa7870b917154cb311 to your computer and use it in GitHub Desktop.
TODO Blame tool
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 | |
# Greps the codebase looking for TODO entries, and prints out who's the lazy dev that left it there... | |
git grep -n "TODO" | | |
while read -d $'\n' task | |
do | |
split=(${task//:/ }) | |
file=${split[0]} | |
line=${split[1]} | |
git blame -L $line,$line $file | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
glorious