`git log -S some_variable_name` returns all commits where `some_variable_name` is in the diff (either removed, added, or modified)

super useful for tracking down regressions where you know the variable that's the culprit

@darius Oh nice. I've used `git bisect` a lot for tracking digressions, but that can be pretty heavyweight when you already have some idea of the issue.