I want to find the most recent commit that modified a source file.
I can use git blame to see all the dates for commits by each line, but it’s difficu
git blame
I'm not sure if this is what you want but if you do a git log to get the commits that altered that file. You can pick the topmost one. It should be the one you're looking for.
git log