index : asp32 | |
Archlinux32 fork of asp - obsolete | gitolite user |
summaryrefslogtreecommitdiff |
author | Dave Reisner <dreisner@archlinux.org> | 2017-07-08 09:25:13 -0400 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2017-07-08 13:25:43 -0400 |
commit | 6def64c8e0b6d6d41b8768db6d8448f8bc320bbf (patch) | |
tree | 6763bad2cbc332dc705f6070f2caae34b3ff3501 /shell/bash-completion | |
parent | 19dcc3111174284babb30742539bdef4fa8808c9 (diff) |
-rw-r--r-- | shell/bash-completion | 5 |
diff --git a/shell/bash-completion b/shell/bash-completion index acff4c8..3c7fc06 100644 --- a/shell/bash-completion +++ b/shell/bash-completion @@ -17,6 +17,7 @@ _asp() { [ALL_PACKAGES]='checkout difflog export list-arches list-repos log shortlog show ls-files' [LOCAL_PACKAGES]='untrack update' [NONE]='disk-usage gc help list-all list-local' + [PROTO]='set-git-protocol' ) # flags @@ -45,6 +46,10 @@ _asp() { verb=$word comps=$(ASP_GIT_QUIET=1 \asp list-local | sed 's,.*/,,') break + elif in_array "$word" ${verbs[PROTO]}; then + verb=$word + comps='git http https' + break elif in_array "$word" ${verbs[NONE]}; then verb=$word break |