From: Christian Couder Date: Sat, 24 Mar 2007 05:31:16 +0000 (+0100) Subject: Documentation: bisect: reword one paragraph. X-Git-Tag: v1.5.1-rc2~19 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/cc070d1f797c7488ed479817d893ad78fc4dae2b Documentation: bisect: reword one paragraph. Signed-off-by: Christian Couder Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git-bisect.txt b/Documentation/git-bisect.txt index a77fbe8484..4bd468e66d 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