Merge branch 'maint'
authorJunio C Hamano <gitster@pobox.com>
Sun, 20 Mar 2011 06:21:10 +0000 (23:21 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sun, 20 Mar 2011 06:21:10 +0000 (23:21 -0700)
* maint:
gitweb: Always call parse_date with timezone parameter
bisect: explain the rationale behind 125

1  2 
Documentation/git-bisect.txt
index a1e47d679808a3ab6b02565891eec511830de0c3,1701e42e4aa87fe6beb78c38201ae35adf1d68dd..4b4b096ce5390d4343c73fe187d686e7072d3549
@@@ -241,7 -241,12 +241,12 @@@ exit(3) manual page), as the value is c
  
  The special exit code 125 should be used when the current source code
  cannot be tested. If the script exits with this code, the current
- revision will be skipped (see `git bisect skip` above).
+ revision will be skipped (see `git bisect skip` above). 125 was chosen
+ as the highest sensible value to use for this purpose, because 126 and 127
+ are used by POSIX shells to signal specific error status (127 is for
+ command not found, 126 is for command found but not executable---these
+ details do not matter, as they are normal errors in the script, as far as
+ "bisect run" is concerned).
  
  You may often find that during a bisect session you want to have
  temporary modifications (e.g. s/#define DEBUG 0/#define DEBUG 1/ in a
@@@ -322,6 -327,14 +327,6 @@@ $ git bisect run sh -c "make || exit 12
  +
  Does the same as the previous example, but on a single line.
  
 -Author
 -------
 -Written by Linus Torvalds <torvalds@osdl.org>
 -
 -Documentation
 --------------
 -Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
 -
  SEE ALSO
  --------
  link:git-bisect-lk2009.html[Fighting regressions with git bisect],