Search Git history for commits that introduced/removed a string (git)
git log -S "specific_variable_name"
Finds all commits where the number of occurrences of a specific string or code snippet changed (a "pickaxe" search).
git log -S "specific_variable_name"
Finds all commits where the number of occurrences of a specific string or code snippet changed (a "pickaxe" search).