summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorChristian Couder <chriscool@tuxfamily.org>2007-03-24 05:31:16 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-03-24 06:26:02 (GMT)
commitcc070d1f797c7488ed479817d893ad78fc4dae2b (patch)
tree0f4d50a76a778ebb8c0debddea48f49e417b7f2b /Documentation
parent7891a2811dc7cae375e34c9f4fa6c8ecaef0f6d7 (diff)
downloadgit-cc070d1f797c7488ed479817d893ad78fc4dae2b.zip
git-cc070d1f797c7488ed479817d893ad78fc4dae2b.tar.gz
git-cc070d1f797c7488ed479817d893ad78fc4dae2b.tar.bz2
Documentation: bisect: reword one paragraph.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/git-bisect.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/git-bisect.txt b/Documentation/git-bisect.txt
index a77fbe8..4bd468e 100644
--- a/Documentation/git-bisect.txt
+++ b/Documentation/git-bisect.txt
@@ -134,9 +134,9 @@ exit with code 0 in case the current source code is good and with a
code between 1 and 127 (included) in case the current source code is
bad.
-Any other exit code (a program that does "exit(-1)" leaves $? = 255,
-see exit(3) manual page, the value is chopped with "& 0377") will
-abort the automatic bisect process.
+Any other exit code will abort the automatic bisect process. (A
+program that does "exit(-1)" leaves $? = 255, see exit(3) manual page,
+the value is chopped with "& 0377".)
You may often find that during bisect you want to have near-constant
tweaks (e.g., s/#define DEBUG 0/#define DEBUG 1/ in a header file, or