diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-02-05 15:44:28 -0500 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-02-05 13:49:00 -0800 |
commit | b26c87488fa89e444972c486326eecca5b2132c7 (patch) | |
tree | 2eeb38fb6553a4cd6cbfbecfbab2576e50b25ce9 /contrib | |
parent | 983591c31e2529fbba8dd2d69dce5ab446584921 (diff) | |
download | git-b26c87488fa89e444972c486326eecca5b2132c7.tar.gz git-b26c87488fa89e444972c486326eecca5b2132c7.tar.xz |
bash: Offer --prune completion for git-gc.
I'm lazy. I don't want to type out --prune if bash can do it for
me with --<tab>.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/completion/git-completion.bash | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index c0dae5484..324bfbd8b 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -508,6 +508,18 @@ _git_format_patch () __git_complete_revlist } +_git_gc () +{ + local cur="${COMP_WORDS[COMP_CWORD]}" + case "$cur" in + --*) + __gitcomp "--prune" + return + ;; + esac + COMPREPLY=() +} + _git_ls_remote () { __gitcomp "$(__git_remotes)" @@ -881,6 +893,7 @@ _git () diff-tree) _git_diff_tree ;; fetch) _git_fetch ;; format-patch) _git_format_patch ;; + gc) _git_gc ;; log) _git_log ;; ls-remote) _git_ls_remote ;; ls-tree) _git_ls_tree ;; @@ -923,6 +936,7 @@ complete -o default -o nospace -F _git_diff git-diff complete -o default -o nospace -F _git_diff_tree git-diff-tree complete -o default -o nospace -F _git_fetch git-fetch complete -o default -o nospace -F _git_format_patch git-format-patch +complete -o default -o nospace -F _git_gc git-gc complete -o default -o nospace -F _git_log git-log complete -o default -o nospace -F _git_ls_remote git-ls-remote complete -o default -o nospace -F _git_ls_tree git-ls-tree |