diff options
author | David Aguilar <davvid@gmail.com> | 2014-10-04 16:20:38 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-10-07 12:00:48 -0700 |
commit | 2ca0b197b89e1dad0166f60622f087296764dc42 (patch) | |
tree | 3d9caf680533c2f6629ce59f720cc9a01d028e48 /contrib | |
parent | 565301e41670825ceedf75220f2918ae76831240 (diff) | |
download | git-2ca0b197b89e1dad0166f60622f087296764dc42.tar.gz git-2ca0b197b89e1dad0166f60622f087296764dc42.tar.xz |
completion: add --show-signature for log and show
Signed-off-by: David Aguilar <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/completion/git-completion.bash | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 5ea5b82d2..2ed230a86 100644 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -1467,6 +1467,7 @@ _git_log () --abbrev-commit --abbrev= --relative-date --date= --pretty= --format= --oneline + --show-signature --cherry-pick --graph --decorate --decorate= @@ -2344,6 +2345,7 @@ _git_show () ;; --*) __gitcomp "--pretty= --format= --abbrev-commit --oneline + --show-signature $__git_diff_common_options " return |