Expand arguments for git difftool.

This commit is contained in:
Antti Salminen
2016-01-09 13:41:38 +02:00
committed by Wilhelmina Drengwitz
parent d804b2860e
commit 942f2bdd90

View File

@@ -28,7 +28,7 @@ if type hub > /dev/null 2>&1; then export _git_cmd="hub"; fi
function git(){ function git(){
# Only expand args for git commands that deal with paths or branches # Only expand args for git commands that deal with paths or branches
case $1 in case $1 in
commit|blame|add|log|rebase|merge) commit|blame|add|log|rebase|merge|difftool)
exec_scmb_expand_args "$_git_cmd" "$@";; exec_scmb_expand_args "$_git_cmd" "$@";;
checkout|diff|rm|reset) checkout|diff|rm|reset)
exec_scmb_expand_args --relative "$_git_cmd" "$@";; exec_scmb_expand_args --relative "$_git_cmd" "$@";;