#!/usr/bin/env bash
# This is one of two aliases for git bisect (good/bad).
#
# It saves me a bit of typing and lets me use shell autocomplete when
# doing a 'git bisect'.

set -o errexit
set -o nounset

pushd $(git rev-parse --show-toplevel)
  git bisect good
popd
