Git Bisect

 Git Bisect


The "git bisect" command allows you to perform a binary search through your Git history to find the commit that introduced a bug. This can be useful for debugging complex issues.


git bisect start

git bisect bad HEAD

git bisect good <commit-hash>

No comments:

Post a Comment