From adedf869711923b99e2ce984368235ea2139464c Mon Sep 17 00:00:00 2001 From: Nathan Broadbent Date: Sun, 3 Feb 2013 13:35:59 +1300 Subject: [PATCH] No expand args for git reset --- 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 8791bd9..8c715a1 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|reset|rm|blame|diff|add|log|rebase) + checkout|commit|rm|blame|diff|add|log|rebase) exec_scmb_expand_args "$_git_cmd" "$@";; branch) _scmb_git_branch_shortcuts "${@:2}";;