From: Junio C Hamano Date: Thu, 22 Mar 2007 05:15:54 +0000 (-0700) Subject: git-rev-list: add --bisect-vars option. X-Git-Tag: v1.5.2-rc0~94^2~5 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/457f08a030c8542b90172d24de4b8d11c4dae80f?ds=inline;hp=457f08a030c8542b90172d24de4b8d11c4dae80f git-rev-list: add --bisect-vars option. This adds --bisect-vars option to rev-list. The output is suitable for `eval` in shell and defines five variables: - bisect_rev is the next revision to test. - bisect_nr is the expected number of commits to test after bisect_rev is tested. - bisect_good is the expected number of commits to test if bisect_rev turns out to be good. - bisect_bad is the expected number of commits to test if bisect_rev turns out to be bad. - bisect_all is the number of commits we are bisecting right now. The documentation text was partly stolen from Johannes Schindelin's patch. Signed-off-by: Junio C Hamano ---