Lines Matching full:git
34 使用 ``git`` 提供的工具可以很容易地找到缺陷,只要缺陷是可复现的。
41 $ git bisect start
45 $ git bisect bad [commit]
49 $ git bisect good [commit]
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
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
80 - `Using Git bisect to figure out when brokenness was introduced