#!/usr/bin/env bash
# alias for 'git checkout'

set -o errexit
set -o nounset

print_info "-> git checkout \"$@\""
git checkout "$@"
