| title | Debugging |
|---|---|
| description | Git recipes for finding bugs with bisect, blaming lines, and searching commit messages and file contents across history. |
| section | playbook/debugging |
| order | 80 |
Use Git Bisect for a full walkthrough of manual and automated binary search through commit history.
$ git blame <file>
$ git log --grep="fix" --oneline
$ git log -S "functionName" --oneline