Today I Learned

hashrocket A Hashrocket project

Search commit diffs

Ever had to search for specific changes when working with less than revealing commit messages? Search through the diffs with the -S flag on git log and it will give you back the commits that match that text in the diffs.

git log -S SomeClassThatGotRemoved

See More #git TILs