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 |
What is git reflog?
How do you find a list of files that have changed in a particular commit?
How is git instaweb used?
How many heads can be created in a repository?
How to resolve a conflict in git?
What is the difference between the ‘git diff ’and ‘git status’?
What is a repository and how will you create it?
How will you know in git if a branch has already been merged into master?
What is the difference between GIT and SVN?
What is the function of ‘git diff ’ in git?
What is the function of ‘git stash apply’?
What are git stash and git stash drop?