Skip to main content

git/bad

1#!/usr/bin/env bash
2# This is one of two aliases for git bisect (good/bad).
3#
4# It saves me a bit of typing and lets me use shell autocomplete when
5# doing a 'git bisect'.
7set -o errexit
8set -o nounset
10pushd $(git rev-parse --show-toplevel)
11 git bisect bad
12popd