Skip to main content

git/gc

1#!/usr/bin/env bash
2# alias for 'git checkout'
4set -o errexit
5set -o nounset
7print_info "-> git checkout \"$@\""
8git checkout "$@"