#!/usr/bin/env sh
set -eu

branch="$(git branch --show-current)"
if [ -z "${branch}" ]; then
  exit 0
fi

git push origin "${branch}"
