#!/usr/bin/env bash
# Get the name of the current branch in Git
# See https://stackoverflow.com/a/12142066/1558022

set -o errexit
set -o nounset

git rev-parse --abbrev-ref HEAD
