Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is git bisect? How can you use it to determine the source of a (regression) bug?



What is git bisect? How can you use it to determine the source of a (regression) bug?..

Answer / Sagar Agnihotri

Git Bisect is a command that helps find the commit where a regression was introduced. You start by marking the latest 'good' and 'bad' commits, then Git Bisect automatically checks out intermediate commits and compiles the project to see if it still has the bug. If the bug persists, Git Bisect will continue checking out earlier commits until it finds the commit that introduced the regression.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Git Interview Questions

What is the difference between rebasing and merge in git?

1 Answers  


How to squash or fixup commits?

1 Answers  


Explain the uses of git commands?

1 Answers  


What is a ‘conflict’ in git?

1 Answers  


What is the function of ‘git stash apply’?

1 Answers  


What work is restored when the deleted branch is recovered?

1 Answers  


What is a commit message?

1 Answers  


What are the benefits of using version control system?

1 Answers  


How do you find a list of files that have changed in a particular commit?

1 Answers  


What is the difference between git pull and git fetch?

1 Answers  


What is git bisect? How can you use it to determine the source of a (regression) bug?

1 Answers  


Why is it advisable to create an additional commit rather than amending an existing commit?

1 Answers  


Categories