How can I list all TODO comments I ever added or edited within all commits of a git versioned project? I do not want to see everyone else's TODO comments.
The output should print all lines actually containing my TODO comments:
\\TODO: This should be changed to something else
\\TODO I guess the bug hides here
\\ TODO I need to do something here
I do not want to just list the commits themselves as git log -S TODO
does.