diff options
author | Jonas Fonseca <fonseca@diku.dk> | 2007-05-19 23:35:21 +0200 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-05-21 02:09:26 -0400 |
commit | 56d99c67d1ad95326902f3a739ab2a3c7bb2d6fe (patch) | |
tree | 5fb0204da914f4730827ccb52366c7cd7116906e | |
parent | aba170cdb4874b72dd619e6f7bbc13c33295f831 (diff) | |
download | git-56d99c67d1ad95326902f3a739ab2a3c7bb2d6fe.tar.gz |
Update bash completion to ignore some more plumbing commands
[sp: Modified Jonas' original patch to keep checkout-index
as a a valid completion.]
Signed-off-by: Jonas Fonseca <fonseca@diku.dk>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rwxr-xr-x | contrib/completion/git-completion.bash | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/contrib/completion/git-completion.bash b/contrib/completion/git-completion.bash index 46356e8a27..35b1ff9157 100755 --- a/contrib/completion/git-completion.bash +++ b/contrib/completion/git-completion.bash @@ -262,6 +262,7 @@ __git_commands () applypatch) : ask gittus;; archimport) : import;; cat-file) : plumbing;; + check-attr) : plumbing;; check-ref-format) : plumbing;; commit-tree) : plumbing;; convert-objects) : plumbing;; @@ -271,8 +272,10 @@ __git_commands () daemon) : daemon;; fast-import) : import;; fsck-objects) : plumbing;; + fetch--tool) : plumbing;; fetch-pack) : plumbing;; fmt-merge-msg) : plumbing;; + for-each-ref) : plumbing;; hash-object) : plumbing;; http-*) : transport;; index-pack) : plumbing;; |