Skip to content

Commit

Permalink
Documentation: bisect: reformat some paragraphs.
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Christian Couder authored and Junio C Hamano committed Mar 24, 2007
1 parent a4e9d71 commit 7891a28
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Documentation/git-bisect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -122,17 +122,17 @@ like this:
$ git bisect start arch/i386 include/asm-i386
------------

If you have a script that can tell if the current
source code is good or bad, you can automatically bisect using:
If you have a script that can tell if the current source code is good
or bad, you can automatically bisect using:

------------
$ git bisect run my_script
------------

Note that the "run" script (`my_script` in the above example)
should 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.
Note that the "run" script (`my_script` in the above example) should
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
Expand Down

0 comments on commit 7891a28

Please sign in to comment.