Created
September 30, 2022 11:09
-
-
Save keriati/2e0cfdad6fd1c1cecca99a6829b21334 to your computer and use it in GitHub Desktop.
List todos in codebase and git blame
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 characters
git grep -ino "// TODO" | cut -d":" -f1-2 | sed 's/:/ /g' | sed 's/\(.*\) \(.*\)/\2,\2 \1/g' | xargs -r -L 1 git blame -c -L > todo-lol.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment