Lines Matching refs:git
34 使用 ``git`` 提供的工具可以很容易地找到缺陷,只要缺陷是可复现的。
38 - 从git源代码构建内核
41 $ git bisect start
45 $ git bisect bad [commit]
49 $ git bisect good [commit]
52 - 使用以下任一与git bisect进行交互::
54 $ git bisect good
58 $ git bisect bad
61 - 在一些交互之后,git bisect将给出可能导致缺陷的变更集。
65 $ git bisect start
66 $ git bisect bad # Current version is bad
67 $ git bisect good v4.8
70 .. [#f1] 您可以(可选地)在开始git bisect的时候提供good或bad参数
71 ``git bisect start [BAD] [GOOD]``
75 - ``git-bisect`` 的手册页
76 - `Fighting regressions with git bisect(用git bisect解决回归)
77 <https://www.kernel.org/pub/software/scm/git/docs/git-bisect-lk2009.html>`_
78 - `Fully automated bisecting with "git bisect run"(使用git bisect run