# Haal repo binnen git clone https://gitlab.ulyssis.org/intermediate-git-2020/demo-5.git cd demo-5 # Bekijk de staat van de repo git log --oneline --graph --all ## Bisect # Toon bug python3 calc.py # Start bisect git bisect start git status git bisect bad git bisect good 4351f8a # Eerste commit # Eerste test = fail git log --oneline --graph --all python3 calc.py git bisect bad # Tweede test = success python3 calc.py git bisect good # Derde test = fail python3 calc.py git bisect bad # Finale test = fail python3 calc.py git bisect bad # Toon result git show refs/bisect/bad # Eindig bisect git bisect reset cd ..