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