`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
`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 8 comments | Expand all CWs
[DATA EXPUNGED]
@faebser Command line, myself. I don't know anything about the non-CLI ecosystem myself! I bet there's cool stuff out there. |
(of course it doesn't have to be a variable, this works for any string in the diff)