Skip to content

Instantly share code, notes, and snippets.

@msonnabaum
Created September 22, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save msonnabaum/facff5f35241eab162f2 to your computer and use it in GitHub Desktop.
Save msonnabaum/facff5f35241eab162f2 to your computer and use it in GitHub Desktop.
function git {
test -z $GITCOMMAND && GITCOMMAND=`which git`
if [ "$1" == "git" ]
then
git $2
else
$GITCOMMAND $1
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment