This option will be passed to "git bisect--helper" using its "--skip-ratio" option. Signed-off-by: Christian Couder <chriscool@xxxxxxxxxxxxx> --- git-bisect.sh | 37 ++++++++++++++++++++++++------------- 1 files changed, 24 insertions(+), 13 deletions(-) diff --git a/git-bisect.sh b/git-bisect.sh index 8969553..176b21d 100755 --- a/git-bisect.sh +++ b/git-bisect.sh @@ -9,7 +9,7 @@ git bisect bad [<rev>] mark <rev> a known-bad revision. git bisect good [<rev>...] mark <rev>... known-good revisions. -git bisect skip [(<rev>|<range>)...] +git bisect skip [--ratio=<ratio>] [(<rev>|<range>)...] mark <rev>... untestable revisions. git bisect next find next bisection to test and check it out. @@ -178,18 +178,27 @@ check_expected_revs() { } bisect_skip() { - all='' - for arg in "$@" + all='' + unset BISECT_SKIP_RATIO + while [ $# -gt 0 ] do - case "$arg" in - *..*) - revs=$(git rev-list "$arg") || die "Bad rev input: $arg" ;; - *) - revs=$(git rev-parse --sq-quote "$arg") ;; - esac - all="$all $revs" - done - eval bisect_state 'skip' $all + arg="$1" + case "$arg" in + --ratio) + shift; BISECT_SKIP_RATIO="$1" ;; + --ratio=*) + BISECT_SKIP_RATIO=$(expr "$arg" : '--ratio=\(.*\)') ;; + *..*) + revs=$(git rev-list "$arg") || + die "Bad rev input: $arg" + all="$all $revs" ;; + *) + revs=$(git rev-parse --sq-quote "$arg") + all="$all $revs" ;; + esac + shift + done + eval bisect_state 'skip' $all } bisect_state() { @@ -270,8 +279,10 @@ bisect_next() { bisect_autostart bisect_next_check good + skip_ratio="${BISECT_SKIP_RATIO+--skip-ratio=$BISECT_SKIP_RATIO}" + # Perform all bisection computation, display and checkout - git bisect--helper --next-all + git bisect--helper --next-all $skip_ratio res=$? # Check if we should exit because bisection is finished -- 1.6.3.GIT -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html