If command is not recognized, pass directly to git.

This commit is contained in:
William Hilton 2015-10-29 15:10:30 -04:00
parent f7850fbd78
commit 091550a4ed

View file

@ -281,4 +281,9 @@ git log --color \
--abbrev-commit -10 "${@:2}"
;;
*)
echo "Passing args straight to git..."
git $@
;;
esac