#!/usr/bin/bash

# DESCRIPTION:
#
# Get short symbolic name of the currently active branch.
#
# env: GIT_ROOT

cd "$GIT_ROOT"

basename "$(/usr/bin/git symbolic-ref HEAD)"
