What is git bisect and what is its purpose?
Answer / Devesh Kumar
Git Bisect is a tool to help find the commit that introduced a bug. Its purpose is to narrow down the commits responsible for the problem by having the user mark a 'good' and 'bad' commit, and then Git Bisect will perform a binary search through the commit history to find the offending commit.
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain what is commit message?
What is git fork?
What is git bisect? How can you use it to determine the source of a (regression) bug?
What does ‘hooks’ comprise of in git?
What does a commit object contain?
What is ‘git add’ is used for?
What is the use of ‘git log’?
What is ‘head’ in git and how many heads can be created in a repository?
What is the function of ‘GIT PUSH’ in GIT?
What is a distributed vcs?
How to remove a file from git without removing it from your file system?
What is a repository and how will you create it?