Problem Statement
How do you find a commit by message and then show its patch?
Explanation
Use `git log --grep "keyword"` to locate by message; then `git show <hash>` (optionally `-p --stat`) to view the diff and metadata.
Practice Sets
This question appears in the following practice sets:
