# Bisecting
To analyze changes that happened to a specific path start the process with:
`git bisect start <badCommit> <goodCommit> <path>`
To analyze merge requests only add `--first-parent` to `git bisect start`.
The bisect log (`bisect log`) includes all relevant bisect calls (including `bisect start`). You can save it by calling `git bisect log > ../bisect.txt`. You can then replay the bisect by calling `git bisect replay ../bisect.txt`.
If you're having issues with bisect replay, simply add a comment to the first line of the bisect log.