Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 269 Bytes

Git Commands.md

File metadata and controls

18 lines (15 loc) · 269 Bytes

Bisect (used to find the last good commit)

git checkout KNOWN_BAD_COMMIT
git bisect start
git bisect bad
git bisect good KNOWN_GOOD_COMMIT

Look at which commits have been marked good or bad

git bisect log

Stop the session

git bisect reset