The command "git bisect" is used for _______ debugging in Git.

  • Binary
  • Binary Search
  • Bisect
  • Incremental
The command "git bisect" is used for incremental debugging in Git. It helps locate the commit that introduced a bug by performing a binary search through the commit history. Developers mark good and bad commits, and Git efficiently narrows down the problematic commit.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *