Skip to content
This repository has been archived by the owner on Oct 11, 2022. It is now read-only.

willov/git-bisect-exercise

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 

Repository files navigation

License

Git bisect exercise

Clone or fork it from here.

Motivation

The motivation for this exercise is to be able to do archaeology with Git on a source code where the bug is difficult to see visually. Finding the offending commit is often more than half the debugging.

Background

The script get_pi.py approximates pi using terms of the Nilakantha series. It should produce 3.14 but it does not. The script broke at some point and produces 3.57 using the last commit:

$ python get_pi.py

3.57

At some point within the 500 first commits, an error was introduced. The only thing we know is that the first commit worked correctly.

Your task

Use git bisect to find the commit which broke the computation.

How to find the first commit

$ git log --oneline --reverse

Bonus exercise

Write a script that checks for a correct result and use git bisect run to find the offending commit automatically.

About

Git bisect exercise.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Python 100.0%