Hacker News new | ask | show | jobs
by steve1977 852 days ago
> My neighbor needs the name of the plumber we used. What was the amount of the bill? When did I order xyz last? What was the size of the wiper blades of my car?

But how do you look that information up in git?

2 comments

The git "pickaxe" [0] is the canonical way of searching through changes. Probably `git log -Splumber` with narrowing down by date.

[0]: https://git-scm.com/book/en/v2/Git-Tools-Searching

You can just search over all the diffs, that’s how I sometimes do it in Fork.app