Lines Matching full:git
8 This document describes how to use a ``git bisect`` to find the source code
25 This includes having a Git clone with the appropriate sources, installing the
31 * Preparation: start the bisection and tell Git about the points in the history
32 you consider to be working and broken, which Git calls 'good' and 'bad'::
34 git bisect start
35 git bisect good v6.0
36 git bisect bad v6.1
38 Instead of Git tags like 'v6.0' and 'v6.1' you can specify commit-ids, too.
41 needs of the codebase Git checked out for testing::
48 bisection a later change resolves. In such cases run ``git bisect skip`` and
55 git bisect good
59 git bisect bad
63 ensure what you tell Git is correct; it is thus often wise to spend a few
66 After issuing one of these two commands, Git will usually check out another
70 If Git instead prints something like 'cafecaca0c0dacafecaca0c0dacafecaca0c0da
72 move to the next point below. Note, right after displaying that line Git will
77 In case you missed Git's output, you can always run ``git bisect log`` to
82 file aside for the bug report; furthermore tell Git to reset the sources to
85 git bisect log > ~/bisection-log
87 git bisect reset
94 To try this, update your clone and check out latest mainline. Then tell Git
97 git revert --no-edit cafec0cacaca0
99 Git might reject this, for example when the bisection landed on a merge
100 commit. In that case, abandon the attempt. Do the same, if Git fails to revert
118 git bisect start
119 git bisect good next/stable
120 git bisect bad next/master
136 * The `man page for 'git bisect' <https://git-scm.com/docs/git-bisect>`_ and
137 `fighting regressions with 'git bisect' <https://git-scm.com/docs/git-bisect-lk2009.html>`_
138 in the Git documentation.
139 * `Working with git bisect <https://nathanchance.dev/posts/working-with-git-bisect/>`_
141 * `Using Git bisect to figure out when brokenness was introduced <http://webchick.net/node/99>`_.
142 * `Fully automated bisecting with 'git bisect run' <https://lwn.net/Articles/317154>`_.
159 …https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/plain/Documentation/admin-guide…