Adding `git log -S` to your code detective toolbox

1 · Daniel Lew · Feb. 19, 2019, 3:31 p.m.
Programming often involves detective work. Properly fixing a problem often requires understanding how the problem came to be in the first place. One of the best tools for code detectives is git blame. With it, you can trace the lineage of every line of code in your codebase. Armed with...