#!/bin/bash

set -o pipefail

echo -n '## '
git branch -vv --color=always | grep '^\*' | cut -c 3- || exit 1
exec git status -s "$@"
