summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7891a28)
raw | patch | inline | side by side (parent: 7891a28)
author | Christian Couder <chriscool@tuxfamily.org> | |
Sat, 24 Mar 2007 05:31:16 +0000 (06:31 +0100) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sat, 24 Mar 2007 06:26:02 +0000 (23:26 -0700) |
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Documentation/git-bisect.txt | patch | blob | history |
index a77fbe84848920153d1659cf19b871e0b7420cfa..4bd468e66db586cc098934dd1894aad84182dd53 100644 (file)
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