From a6a23b0a3d30a1c9eb9d38d942cebd119ce65318 Mon Sep 17 00:00:00 2001 From: Nathan Broadbent Date: Thu, 15 Aug 2013 23:47:09 -0700 Subject: [PATCH] Re-add git reset to the expanded numeric commands --- lib/git/aliases.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/git/aliases.sh b/lib/git/aliases.sh index 24df527..8fa99dc 100644 --- a/lib/git/aliases.sh +++ b/lib/git/aliases.sh @@ -26,7 +26,7 @@ if type hub > /dev/null 2>&1; then export _git_cmd="hub"; fi function git(){ # Only expand args for git commands that deal with paths or branches case $1 in - checkout|commit|rm|blame|diff|add|log|rebase) + checkout|commit|rm|blame|diff|add|log|rebase|reset) exec_scmb_expand_args "$_git_cmd" "$@";; branch) _scmb_git_branch_shortcuts "${@:2}";;