summaryrefslogtreecommitdiffstats
path: root/man1/git-bisect.1
diff options
context:
space:
mode:
Diffstat (limited to 'man1/git-bisect.1')
-rw-r--r--man1/git-bisect.110
1 files changed, 5 insertions, 5 deletions
diff --git a/man1/git-bisect.1 b/man1/git-bisect.1
index 54143bb70..813f53b01 100644
--- a/man1/git-bisect.1
+++ b/man1/git-bisect.1
@@ -2,12 +2,12 @@
.\" Title: git-bisect
.\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
.\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
-.\" Date: 03/21/2023
+.\" Date: 03/28/2023
.\" Manual: Git Manual
-.\" Source: Git 2.40.0.130.g27d43aaaf5
+.\" Source: Git 2.40.0.141.g8d90352acc
.\" Language: English
.\"
-.TH "GIT\-BISECT" "1" "03/21/2023" "Git 2\&.40\&.0\&.130\&.g27d43a" "Git Manual"
+.TH "GIT\-BISECT" "1" "03/28/2023" "Git 2\&.40\&.0\&.141\&.g8d9035" "Git Manual"
.\" -----------------------------------------------------------------
.\" * Define some portability stuff
.\" -----------------------------------------------------------------
@@ -637,13 +637,13 @@ Locate a good region of the object graph in a damaged repository
.\}
.nf
$ git bisect start HEAD <known\-good\-commit> [ <boundary\-commit> \&.\&.\&. ] \-\-no\-checkout
-$ git bisect run sh \-c \(aq
+$ git bisect run sh \-c \*(Aq
GOOD=$(git for\-each\-ref "\-\-format=%(objectname)" refs/bisect/good\-*) &&
git rev\-list \-\-objects BISECT_HEAD \-\-not $GOOD >tmp\&.$$ &&
git pack\-objects \-\-stdout >/dev/null <tmp\&.$$
rc=$?
rm \-f tmp\&.$$
- test $rc = 0\(aq
+ test $rc = 0\*(Aq
$ git bisect reset # quit the bisect session
.fi