Skip to content

Commit 980ab0a

Browse files
committed
Website build
1 parent 1efef87 commit 980ab0a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

9_debugging.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ <h4><span class="section-number">9.7.3.3. </span>Running the bisection<a class="
668668
<p>First, check that you are up to date with <code class="docutils literal notranslate"><span class="pre">main</span></code> (or whatever your current
669669
branch is called). And that you know the commit id you want to start from. To
670670
set up the bisection we run:</p>
671-
<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> git bisect start 66a10d5d374de796827ac3152f0c507a46b73d60 HEAD --
671+
<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> git bisect start HEAD 66a10d5d374de796827ac3152f0c507a46b73d60 --
672672
</pre></div>
673673
</div>
674674
<p>Obviously you replace the commit ID with your starting point. <code class="docutils literal notranslate"><span class="pre">HEAD</span></code> is a git

_sources/9_debugging.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ set up the bisection we run:
631631

632632
.. code-block:: console
633633
634-
$ git bisect start 66a10d5d374de796827ac3152f0c507a46b73d60 HEAD --
634+
$ git bisect start HEAD 66a10d5d374de796827ac3152f0c507a46b73d60 --
635635
636636
Obviously you replace the commit ID with your starting point. ``HEAD`` is a git
637637
shorthand for the current state of the repository, so it's a suitable end point

0 commit comments

Comments
 (0)