git log -S finds when a string appeared or vanished
git blame tells you who last touched a line. git log -S tells you every commit where the number of occurrences of a string changed, which is the question "when did this constant become 30" actually is.
git log -S "MAX_RETRIES" --oneline -- src/Add -p to see the diffs. It is the fastest archaeology tool in git.
git