diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-06-14 08:46:23 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-06-14 08:46:23 -0700 |
commit | bdff0e3a374617dce784f801b97500d9ba2e4705 (patch) | |
tree | b4d969695a5ee49e325b535ea9742c0cf819c4fb /contrib | |
parent | 908b3601e67e21996c1df5807761f42dcd72c2c5 (diff) | |
parent | 5269f7f8c6b293f1568c4f03c14596835e22df31 (diff) | |
download | git-bdff0e3a374617dce784f801b97500d9ba2e4705.tar.gz |
Merge branch 'rr/complete-difftool-fixup'
"git difftool" can take both revs to be compared and pathspecs.
"git show" takes revs, revs:path and pathspecs.
* rr/complete-difftool-fixup:
completion: show can take both revlist and paths
completion: difftool takes both revs and files
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/completion/git-completion.bash | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 56c52c6654..fd9a1d5f6c 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -1211,7 +1211,7 @@ _git_difftool () return ;; esac - __git_complete_file + __git_complete_revlist_file } __git_fetch_options=" @@ -2277,7 +2277,7 @@ _git_show () return ;; esac - __git_complete_file + __git_complete_revlist_file } _git_show_branch () |