diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2007-08-29 15:15:34 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-08-29 13:19:41 -0700 |
commit | 7d37b5bf4eda8b2dcca371fb4b5ebd50fed64d67 (patch) | |
tree | fce334f5cfbee4c71841968676c12152379485bb | |
parent | bdd7379566cf7b1f1c9bfe42e794c8f1821971f7 (diff) | |
download | git-7d37b5bf4eda8b2dcca371fb4b5ebd50fed64d67.tar.gz git-7d37b5bf4eda8b2dcca371fb4b5ebd50fed64d67.tar.xz |
completion: also complete git-log's --left-right and --cherry-pick option
Both --left-right and --cherry-pick are particularly long to type, so
help the user there.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | contrib/completion/git-completion.bash | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index a652c88b2..5ed18215f 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -641,6 +641,7 @@ _git_log () --all-match --pretty= --name-status --name-only --raw --not --all + --left-right --cherry-pick " return ;; |