aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2015-05-22 13:58:20 +0200
committerGuido Günther <agx@sigxcpu.org>2015-05-22 14:00:58 +0200
commitc11a4d3cb48035d011ea1844484eca69cd398973 (patch)
treec9783d6e66e671dfce85ecb6bfac339d5a8302cc
parent7a0b9dfe3253c2a8a3c1085f35c7d86742d3c521 (diff)
Add back completion for pq subcommands
This got lost in 270f41.
-rw-r--r--debian/git-buildpackage.bash-completion8
1 files changed, 8 insertions, 0 deletions
diff --git a/debian/git-buildpackage.bash-completion b/debian/git-buildpackage.bash-completion
index a978d00e..924b9b7b 100644
--- a/debian/git-buildpackage.bash-completion
+++ b/debian/git-buildpackage.bash-completion
@@ -113,6 +113,14 @@ _gbp-buildpackage()
}
+_gbp-pq ()
+{
+ local options=$(_gbp_options pq)
+ options="$options export import rebase drop apply switch"
+ _gbp_comp "$options"
+}
+
+
_gbp-generic-cmd()
{
local options=$(_gbp_options "${1}")