notes/devops/vcs/git/git-bisect.txt
Ihar Hancharenka b9c36c1e5a m
2024-02-04 19:40:05 +03:00

20 строки
467 B
Plaintext

git bisect start
start the bisect process
git bisect good <hash-good>
tell the good (starting point) commit
git bisect bad <hash-bad>
tell the bad (wrong) state commit
then - moving to the fs, checking and exec:
git bisect good
to continue
or
git bisect bad
to go to the detached-HEAD state
git bisect reset
stop the bisect process
2021
https://remimercier.com/how-to-use-git-bisect/
https://habr.com/ru/post/591447/