Browse Source

completion: difftool takes both revs and files

'git difftool' is clearly a frontend to 'git diff' and is used in
exactly the same way, but it uses a misleadingly named completion
function __git_complete_file.  It happens to work only because it
calls __git_complete_revlist_file that completes both revs and
paths.

Change it to use __git_complete_revlist_file, just like 'git diff'.

Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Ramkumar Ramachandra 12 years ago committed by Junio C Hamano
parent
commit
d8517cc667
  1. 2
      contrib/completion/git-completion.bash

2
contrib/completion/git-completion.bash

@ -1294,7 +1294,7 @@ _git_difftool () @@ -1294,7 +1294,7 @@ _git_difftool ()
return
;;
esac
__git_complete_file
__git_complete_revlist_file
}

__git_fetch_options="

Loading…
Cancel
Save