Lines Matching refs:git
29 Using the provided tools with ``git`` makes finding bugs easy provided the bug
34 - build the Kernel from its git source
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
68 .. [#f1] You can, optionally, provide both good and bad arguments at git
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>`_