Skip to content

Instantly share code, notes, and snippets.

@loganlinn
Created March 19, 2012 16:00
Show Gist options
  • Save loganlinn/2117260 to your computer and use it in GitHub Desktop.
Save loganlinn/2117260 to your computer and use it in GitHub Desktop.
Finds todos that you have committed
# not finished
ack -i --flush --nocolor --nogroup '[^\w]?todo[^\w]' | awk -F\: '{print "-L " $2 "," $2 " -- " $1}' | xargs -L 1 git blame | grep -i `git config --get user.name`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment