Lines Matching refs:bisect
35 - start bisect with [#f1]_::
37 $ git bisect start
41 $ git bisect bad [commit]
45 $ git bisect good [commit]
48 - interact with git bisect by using either::
50 $ git bisect good
54 $ git bisect bad
57 - After some interactions, git bisect will give you the changeset that
63 $ git bisect start
64 $ git bisect bad # Current version is bad
65 $ git bisect good v4.8
69 start with ``git bisect start [BAD] [GOOD]``
73 - The man page for ``git-bisect``
74 - `Fighting regressions with git bisect <https://www.kernel.org/pub/software/scm/git/docs/git-bisec…
75 - `Fully automated bisecting with "git bisect run" <https://lwn.net/Articles/317154>`_
76 - `Using Git bisect to figure out when brokenness was introduced <http://webchick.net/node/99>`_