From 091550a4ed9d410d719235f7b502ae9c23354e58 Mon Sep 17 00:00:00 2001 From: William Hilton Date: Thu, 29 Oct 2015 15:10:30 -0400 Subject: [PATCH] If command is not recognized, pass directly to git. --- bin/get | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bin/get b/bin/get index 86dac62..ce6bab0 100755 --- a/bin/get +++ b/bin/get @@ -281,4 +281,9 @@ git log --color \ --abbrev-commit -10 "${@:2}" ;; +*) +echo "Passing args straight to git..." +git $@ +;; + esac